UI
super6kingl
这个作者很懒,什么都没留下…
展开
-
UI数据库
UI数据库.h#import //引数据库的头文件#import #import "Student.h"@interface dataBaseHandle :NSObject//成员变量{ sqlite3 *dbPoint;}//单例//因为工程所对应的数据库在工程里是唯原创 2015-06-17 20:48:19 · 415 阅读 · 0 评论 -
UISearchController搜索功能的简单使用
UISearchController是iOS8出的如果要适配iphone4的朋友,就别使用UISearchController,4不能升级到iOS8。直接上代码#import "ViewController.h"@interface ViewController ()UITableViewDelegate,UITableViewDataSource,UI原创 2016-01-29 14:27:05 · 1462 阅读 · 0 评论 -
UIAlertController的使用
UIAlertController是iOS8出的,他把AlertView和sheet整合到一起了他的自定义性比alertView要好的多。不多说直接看代码吧- (IBAction)AlertNew:(id)sender{// UIAlertControllerStyleAlertUIAlertController *alertVC = [UIAlertCon原创 2016-01-29 14:13:13 · 270 阅读 · 0 评论 -
UI_Gesture手势
rootViewController.m- (void)viewDidLoad { [superviewDidLoad]; // Do any additional setup after loading the view. self.view.backgroundColor = [UIColorcyanColor]; //原创 2015-05-26 20:34:11 · 368 阅读 · 0 评论 -
UI_LTView自定义视图
自定义视图自定义视图就像一个个模板一样,能为我们节省很多代码的书写.自定义视图是多种多样的,今天所写的是最常用的自定义视图之一.页面中往往都是一个Label与之对应着一个TextField,以下便是实现的代码.AppDelegate.h#import @interface AppDelegate :UIResponder UIApplic原创 2015-05-23 19:33:30 · 411 阅读 · 0 评论 -
UI_UITextField
UITextField的基本操作以及属性原创 2015-05-23 14:22:01 · 334 阅读 · 0 评论 -
UI_UIView(视图)
UIView"AppDelegate.h"#import @interface AppDelegate :UIResponder UIApplicationDelegate>@property (strong,nonatomic) UIWindow *window; //该属性创建原创 2015-05-23 11:07:46 · 293 阅读 · 0 评论 -
UI_Button(按钮)
UIButton的属性以及基本操作,按钮的切换原创 2015-05-23 14:53:09 · 323 阅读 · 0 评论 -
UI_UILabel(标签)
UILabel的基本操作以及属性"AppDelegate.m"- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions { self.window = [[UIWindowalloc] initWi原创 2015-05-23 10:30:24 · 287 阅读 · 0 评论 -
UISegmentedControl
- (void)initSegmentedControl{ NSArray *segmentedData = [[NSArrayalloc]initWithObjects:@"apple",@"orange",@"banana",nil]; UISegmentedControl *segmentedControl = [[UISegmentedControl原创 2016-01-29 14:42:20 · 303 阅读 · 0 评论