swift中没有宏的概念,那么我们在swift使用宏的功能来提高效率呢?一、使用关键字 let 来声明一个常量 存储相应的值,以下代码声明了常量 myColor 来存储一种指定的颜色let myColor = UIColor(red: 0.2, green: 0.7, blue: 0.1, alph...
分类:
编程语言 时间:
2016-01-03 15:06:45
阅读次数:
263
更改导航栏的背景和文字Color方法一:[objc] view plaincopy//set NavigationBar 背景颜色&title 颜色[self.navigationController.navigationBar setBarTintColor:[UIColor colorWithR...
分类:
其他好文 时间:
2016-01-02 22:23:52
阅读次数:
250
UIPageControl用于显示滑动视图实际拥有的页数UIPageControl *page = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 100, 100, 30);page.background = [UIColor redCol...
分类:
其他好文 时间:
2016-01-02 22:11:36
阅读次数:
741
UIScrollView是所有滑动视图的基类UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(100, 100, 200, 200)];scroll.background = [UIColor redColor...
分类:
其他好文 时间:
2016-01-02 20:26:12
阅读次数:
137
UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake:(100, 100, 200, 25); //创建一个滑竿对象slider.backgroundColor = [UIColor redColor];slider.minimu...
分类:
其他好文 时间:
2016-01-02 20:17:49
阅读次数:
157
UISwitch iOS中的开关控件,只有两种状态,打开或关闭.aSwitch.tintColor = [UIColor redColor]; //关闭状态下的渲染颜色aSwitch.onTintColor = [UIColor blueColor]; //打开状态下的渲染颜色.aSwitch.on...
分类:
其他好文 时间:
2016-01-02 18:19:08
阅读次数:
143
iOS中RGB经常使用的色值,同一时候可将对颜色的设置定义成宏,方便开发应用,如:// RGB颜色转换(16进制->10进制)#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >...
分类:
移动开发 时间:
2016-01-01 13:05:42
阅读次数:
277
//UIColor转UIImage- (UIImage*)imageWithColor: (UIColor*)color{ CGRectrect=CGRectMake(0.0f,0.0f,100.0f,50.0f); UIGraphicsBeginImageContext(rect.size)...
分类:
移动开发 时间:
2015-12-31 12:40:01
阅读次数:
192
inline static UIColor* getColorFromHex(NSString *hexColor){ if (hexColor == nil) { return nil; } unsigned int red, green, blue...
分类:
移动开发 时间:
2015-12-30 11:17:10
阅读次数:
191
1.背景颜色 field.backgoundColor = [UIColor redColor];2.设置field文字 field.text = @"输入文字";3.设置field的提示文字 field.placeholder = @"请输入用户名";4.设置field开始编辑时清除提示内容 fi...
分类:
其他好文 时间:
2015-12-26 18:29:20
阅读次数:
125