18 lines
306 B
Objective-C
18 lines
306 B
Objective-C
//
|
|
// SCLTextView.h
|
|
// SCLAlertView
|
|
//
|
|
// Created by Diogo Autilio on 9/18/15.
|
|
// Copyright (c) 2015-2017 AnyKey Entertainment. All rights reserved.
|
|
//
|
|
|
|
#if defined(__has_feature) && __has_feature(modules)
|
|
@import UIKit;
|
|
#else
|
|
#import <UIKit/UIKit.h>
|
|
#endif
|
|
|
|
@interface SCLTextView : UITextField
|
|
|
|
@end
|