添加子控件 1. 有标题, alert标题高度大概 是 40, 子控件的 Y一般在40 ,如果中间有换行, \n 的高度大概是30 2.alert的宽度 是270, 设置frame 的时候注意 /// \n\n\n 多打几行 可以添加 空间高度 let alert = UIAlertControll... ...
分类:
编程语言 时间:
2018-09-15 18:21:28
阅读次数:
897
```
self.shadowView.layer.shadowOpacity = 0.6;// 阴影透明度 self.shadowView.layer.shadowColor = [UIColor darkGrayColor].CGColor;// 阴影的颜色 self.shadowView.la... ...
分类:
其他好文 时间:
2018-08-14 15:00:16
阅读次数:
157
```
NSString *rateStr = [NSString stringWithFormat:@"七日年化 %.2f%%",info.rate]; [self.rateLabel setText:rateStr afterInheritingLabelAttributesAndConfigu... ...
分类:
其他好文 时间:
2018-08-14 14:25:54
阅读次数:
212
//- (UIView *)createTimeBG //{ // UIView *view = [[UIView alloc]init]; // view.backgroundColor = [UIColor clearColor]; // view.layer.shadowOffset = CG ...
分类:
移动开发 时间:
2018-08-09 21:12:53
阅读次数:
425
UIColor、CIColor 和 CGColor 出现在不同的类库里面,其实就是颜色存储方式不同而已,比如 999 可以用 10 进制、2 进制、16 进制等存储。三者之间都是能够方便转换的,特别是很多构造函数。 1、UIColor 的创建 1.1 使用系统定义好的颜色创建 1.2 由白色透明度创 ...
分类:
其他好文 时间:
2018-08-04 00:05:52
阅读次数:
247
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
-----------------------------------
``` Objective-C
/** 设置随机颜色 */
#define CHRandomColor [UIColor colorWithRed:arc4random_uniform(256)/255.0 green:arc4... ...
分类:
其他好文 时间:
2018-07-15 00:50:03
阅读次数:
190
unsigned long numComponents = CGColorGetNumberOfComponents([[UIColor blackColor] CGColor]); 2014年12月17日 17:40:59 阅读数:35626 unsigned long numComponents ...
分类:
其他好文 时间:
2018-06-30 11:04:11
阅读次数:
141