码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
swift UIAlertController使用 UIAlertController的宽度 为270
添加子控件 1. 有标题, alert标题高度大概 是 40, 子控件的 Y一般在40 ,如果中间有换行, \n 的高度大概是30 2.alert的宽度 是270, 设置frame 的时候注意 /// \n\n\n 多打几行 可以添加 空间高度 let alert = UIAlertControll... ...
分类:编程语言   时间:2018-09-15 18:21:28    阅读次数:897
uiview 阴影
``` self.shadowView.layer.shadowOpacity = 0.6;// 阴影透明度 self.shadowView.layer.shadowColor = [UIColor darkGrayColor].CGColor;// 阴影的颜色 self.shadowView.la... ...
分类:其他好文   时间:2018-08-14 15:00:16    阅读次数:157
TTTAtibutedlabel
``` NSString *rateStr = [NSString stringWithFormat:@"七日年化 %.2f%%",info.rate]; [self.rateLabel setText:rateStr afterInheritingLabelAttributesAndConfigu... ...
分类:其他好文   时间:2018-08-14 14:25:54    阅读次数:212
ios 视图既显示阴影又有圆角实现
//- (UIView *)createTimeBG //{ // UIView *view = [[UIView alloc]init]; // view.backgroundColor = [UIColor clearColor]; // view.layer.shadowOffset = CG ...
分类:移动开发   时间:2018-08-09 21:12:53    阅读次数:425
UIColor
UIColor、CIColor 和 CGColor 出现在不同的类库里面,其实就是颜色存储方式不同而已,比如 999 可以用 10 进制、2 进制、16 进制等存储。三者之间都是能够方便转换的,特别是很多构造函数。 1、UIColor 的创建 1.1 使用系统定义好的颜色创建 1.2 由白色透明度创 ...
分类:其他好文   时间:2018-08-04 00:05:52    阅读次数:247
Change the color of a link in an NSMutableAttributedString
Swift Updated for Swift 3 Use with a textView.linkTextAttributes = [NSForegroundColorAttributeName: UIColor.green] And in context: let attributedStrin ...
分类:其他好文   时间:2018-08-01 18:25:12    阅读次数:156
iOS开发图片与颜色处理工具
1、根据颜色生成一张图片 ...
分类:移动开发   时间:2018-07-23 00:54:16    阅读次数:212
常用宏定义 - 随机颜色
----------------------------------- ``` Objective-C /** 设置随机颜色 */ #define CHRandomColor [UIColor colorWithRed:arc4random_uniform(256)/255.0 green:arc4... ...
分类:其他好文   时间:2018-07-15 00:50:03    阅读次数:190
颜色的生成
1、随机颜色的生成 ...
分类:其他好文   时间:2018-07-07 01:11:07    阅读次数:166
怎么去掉Xcode工程中的某种类型的警告 Implicit conversion loses integer precision: 'NSInteger' (aka 'long') to 'int32
unsigned long numComponents = CGColorGetNumberOfComponents([[UIColor blackColor] CGColor]); 2014年12月17日 17:40:59 阅读数:35626 unsigned long numComponents ...
分类:其他好文   时间:2018-06-30 11:04:11    阅读次数:141
848条   上一页 1 2 3 4 5 6 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!