UITabBarController1.它是用来组织用户并排界面 2. 工作原理:UITabBarController被用来控制几个切换器的切换以及TabBar中按钮的状态绘制,和通常的选项卡相似,只不过TabBar 一般在下面显示;点击哪个TabBar就出现相关联的控制器,如果这个控制器有自己的view,那么这个和view就会被显示出来3.3个常用属性:title设置tab现实的名称;image设置tab上的图片,图片大小最好是30*30的png图片,图片本身要有镂空;badgeValue设置tab右上角的小标。4.通常我们有时候会通过viewControllers这个属性把放在数组中的几个视图放入UITabBarController中。5.也可以给每一个tabBar设置背景图片还有颜色。
[tabC.tabBar setSelectedImageTintColor:[UIColor redColor]];//这是5.0版本提供的方法,改变显示图片的颜色为红色,不用系统显示图片颜色(蓝色)
所以在使用前要判断版本是否是5.0以后的。
UIDevice * device = [UIDevice currentDevice];//两种判断是否能使用高版本中的某个方法的方式
NSLog(@"version=%@",device.systemVersion);
int version = [device.systemVersion intValue] 1.UItextView继承于UIScrollView,shi UITextField的升级版,能容纳更多文本内容而且可以滑动。2.UITextView大致属性和UITextField差不多,多了UIScrollView的特性。3.UITextView的常用属性:text,scrollEnabled,font,keyboradType,delegate UIToolBar工具条,可以添加到键盘上,上面可以设置按钮,执行一些需要的操作。
//在弹出的键盘上面加一个toolbar来放置退出键盘的Done按钮。
//创建UIToolbar
UIToolbar* topView = [[UIToolbaralloc]initWithFrame:CGRectMake(0,0,320,30)];
//设置topView的barstyle格式
[topViewsetBarStyle:UIBarStyleBlack];
//创建三个按钮,一个是hello按钮,一个是空格按钮,一个是用来取消键盘的按钮
UIBarButtonItem* helloButton = [[UIBarButtonItemalloc]initWithTitle:@"Hello"style:UIBarButtonItemStyleBorderedtarget:selfaction:nil];
UIBarButtonItem* btnSpace = [[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpacetarget:selfaction:nil];
UIBarButtonItem* DoneButton = [[UIBarButtonItemalloc]initWithTitle:@"Done"style:UIBarButtonItemStyleDonetarget:selfaction:@selector(dismissKeyBoard)];
NSArray* buttonsArray = [NSArrayarrayWithObjects:helloButton,btnSpace,DoneButton,nil];
//将三个按钮加到工具条上
[topViewsetItems:buttonsArray];//get visible UIBarButtonItem. shown in order
//将工具条加到键盘上
[_textViewsetInputAccessoryView:topView];
UITabBarController1.它是用来组织用户并排界面 2. 工作原理:UITabBarController被用来控制几个切换器的切换以及TabBar中按钮的状态绘制,和通常的选项卡相似,只不过TabBar 一般在下面显示;点击哪个TabBar就出现相关联的控制器,如果这个控制器有自己的view,那么这个和view就会被显示出来3.3个常用属性:title设置tab现实的名称;image设置tab上的图片,图片大小最好是30*30的png图片,图片本身要有镂空;badgeValue设置tab右上角的小标。4.通常我们有时候会通过viewControllers这个属性把放在数组中的几个视图放入UITabBarController中。5.也可以给每一个tabBar设置背景图片还有颜色。
[tabC.tabBar setSelectedImageTintColor:[UIColor redColor]];//这是5.0版本提供的方法,改变显示图片的颜色为红色,不用系统显示图片颜色(蓝色)
所以在使用前要判断版本是否是5.0以后的。
UIDevice * device = [UIDevice currentDevice];//两种判断是否能使用高版本中的某个方法的方式
NSLog(@"version=%@",device.systemVersion);
int version = [device.systemVersion intValue] 1.UItextView继承于UIScrollView,shi UITextField的升级版,能容纳更多文本内容而且可以滑动。2.UITextView大致属性和UITextField差不多,多了UIScrollView的特性。3.UITextView的常用属性:text,scrollEnabled,font,keyboradType,delegate UIToolBar工具条,可以添加到键盘上,上面可以设置按钮,执行一些需要的操作。
//在弹出的键盘上面加一个toolbar来放置退出键盘的Done按钮。
//创建UIToolbar
UIToolbar* topView = [[UIToolbaralloc]initWithFrame:CGRectMake(0,0,320,30)];
//设置topView的barstyle格式
[topViewsetBarStyle:UIBarStyleBlack];
//创建三个按钮,一个是hello按钮,一个是空格按钮,一个是用来取消键盘的按钮
UIBarButtonItem* helloButton = [[UIBarButtonItemalloc]initWithTitle:@"Hello"style:UIBarButtonItemStyleBorderedtarget:selfaction:nil];
UIBarButtonItem* btnSpace = [[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpacetarget:selfaction:nil];
UIBarButtonItem* DoneButton = [[UIBarButtonItemalloc]initWithTitle:@"Done"style:UIBarButtonItemStyleDonetarget:selfaction:@selector(dismissKeyBoard)];
NSArray* buttonsArray = [NSArrayarrayWithObjects:helloButton,btnSpace,DoneButton,nil];
//将三个按钮加到工具条上
[topViewsetItems:buttonsArray];//get visible UIBarButtonItem. shown in order
//将工具条加到键盘上
[_textViewsetInputAccessoryView:topView];