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
- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { // Initialization code self.tintColor = [UIColo...
分类:
其他好文 时间:
2015-11-18 21:16:52
阅读次数:
124
一、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
在UIView中一个相对来说比较小的属性,tintColor属性是相当的强大。今天我们就来看看如何使用他,包含使用tint color进行着色标准控件、我们自定义控件甚至重新着色图像。本章的实例程序能够在github上面进行访问,访问地址:github.com/ShinobiControls/iOS...
分类:
移动开发 时间:
2015-10-16 13:18:28
阅读次数:
275
TabBar使用频率很高的一个组件,TabBar的TabBarItem有两个属性一个是image(未选中图片),另一个是selectedImage(选中时图片)但是运行时发现,选中时的图片变成了蓝色的,但是实际上图片是红色的,看来系统的TabBar会对图片默认使用TintColor再进行渲染。解决方...
分类:
其他好文 时间:
2015-10-11 15:15:12
阅读次数:
251
//tabbar选中时的颜色 tabBarController.tabBar.tintColor=[UIColor whiteColor] ; //右上角数字 //可以添加个lable来改变原点的大小, //使用通知/kvo来改变上面的数字 item1.badgeValue=@" “; //...
分类:
移动开发 时间:
2015-09-26 11:45:23
阅读次数:
1088
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
//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