码迷,mamicode.com
首页 >  
搜索关键字:tintcolor    ( 84个结果
UISwitch 开关控件
UISwitch iOS中的开关控件,只有两种状态,打开或关闭.aSwitch.tintColor = [UIColor redColor]; //关闭状态下的渲染颜色aSwitch.onTintColor = [UIColor blueColor]; //打开状态下的渲染颜色.aSwitch.on...
分类:其他好文   时间:2016-01-02 18:19:08    阅读次数:143
改变图片的颜色
定义#import @interface UIImage (ChangeImageColor)/** * 改变图片的颜色 * * @param tintColor * * @return */- (UIImage *) imageWithTintColor:(UIColor *)tintC...
分类:其他好文   时间:2015-12-21 21:47:51    阅读次数:130
asd
- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { // Initialization code self.tintColor = [UIColo...
分类:其他好文   时间:2015-11-18 21:16:52    阅读次数:124
UISwitch(开关控件)、UISegmentedControl(分段控件)
一、UISwitch1、初始化UISwitch *s1 = [[UISwitch alloc]initWithFrame:CGRectMake(50, 170, 100, 200)];2、设置相关属性s1.onTintColor = [UIColor blueColor];s1.tintColor ...
分类:其他好文   时间:2015-11-14 20:42:18    阅读次数:342
iOS tintColor解析
在UIView中一个相对来说比较小的属性,tintColor属性是相当的强大。今天我们就来看看如何使用他,包含使用tint color进行着色标准控件、我们自定义控件甚至重新着色图像。本章的实例程序能够在github上面进行访问,访问地址:github.com/ShinobiControls/iOS...
分类:移动开发   时间:2015-10-16 13:18:28    阅读次数:275
UITabBarItem的selectedImage
TabBar使用频率很高的一个组件,TabBar的TabBarItem有两个属性一个是image(未选中图片),另一个是selectedImage(选中时图片)但是运行时发现,选中时的图片变成了蓝色的,但是实际上图片是红色的,看来系统的TabBar会对图片默认使用TintColor再进行渲染。解决方...
分类:其他好文   时间:2015-10-11 15:15:12    阅读次数:251
iOS tabbar 背景,右上角数字,tabbar获取方法 总结
//tabbar选中时的颜色 tabBarController.tabBar.tintColor=[UIColor whiteColor] ; //右上角数字 //可以添加个lable来改变原点的大小, //使用通知/kvo来改变上面的数字 item1.badgeValue=@" “; //...
分类:移动开发   时间:2015-09-26 11:45:23    阅读次数:1088
iOS学习之 导航栏
iOS7下改变UINavigationBar颜色if(floor(NSFoundationVersionNumber)<=NSFoundationVersionNumber_iOS_6_1){ //LoadresourcesforiOS6.1orearlier self.navigationController.navigationBar.tintColor=[UIColorbrownColor]; }else{ //LoadresourcesforiOS7orlater self.navig..
分类:移动开发   时间:2015-09-23 01:27:01    阅读次数:159
导航栏 UITabBarController等颜色的区别
//tint color是设置你选中的那个tabBar的颜色,默认是蓝色,点击是设置的红色 vc.tabBar.tintColor = [UIColor redColor]; //bar tint color vc.tabBar.barTintColor = [UIColor orangeCol.....
分类:其他好文   时间:2015-09-22 21:53:21    阅读次数:229
设置导航栏的背景图片及左右按钮图片
self.navigationItem.title = kTabBarTitle1; self.navigationController.navigationBar.tintColor = navi_title_color; [self.navigationController.navigat...
分类:其他好文   时间:2015-09-22 16:11:18    阅读次数:137
84条   上一页 1 ... 3 4 5 6 7 ... 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!