NSString *contentStr = @"总以为,在最初的地方,有一个最原来的我,就也会有一个最原来的你"; UILabel *tempLabel = [[UILabel alloc] init]; //设置背景颜色 tempLabel.backgroundColor = [UIColor ... ...
分类:
移动开发 时间:
2016-12-24 19:17:24
阅读次数:
195
UIView * headView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.tbSecond.size.width, 0)]; headView.backgroundColor = [UIColor whiteColor]; UIVi ...
分类:
移动开发 时间:
2016-12-17 17:20:57
阅读次数:
154
strStaus = [晴] NSString *str = [NSString stringWithFormat:@"天气:%@ ",,strStaus]; NSMutableAttributedString *attrDescribeStr = [[NSMutableAttributedStri ...
分类:
其他好文 时间:
2016-12-17 11:37:11
阅读次数:
267
iOS后属性带UI_APPEARANCE_SELECTOR 可以统一设置全局作用 例如: 1>开关控件 @property(nullable, nonatomic, strong) UIColor *onTintColor NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SE ...
分类:
移动开发 时间:
2016-12-13 06:25:41
阅读次数:
273
1.UIStoryBoard 2. segue跳转传值 3. UIColor配色 //1. 十进制配色 [UIColor colorWithRed:163.0/255.0 green:148.0/255.0 blue:128.0/255.0 alpha:1.0]; //2. 设置16进制颜色(同上) ...
分类:
移动开发 时间:
2016-12-04 19:48:24
阅读次数:
257
控件之间的间距相等,但是控件的宽度是不定的。 下列的代码:定义间距为10,yellowview的宽度是由redView的宽度计算出来的。 控件的宽度是一定的,但是控件之间的间距是不定的。 下列的代码:定义控件的宽度为22,控件之间的间距是由redView的宽度计算出来的。 ...
分类:
其他好文 时间:
2016-12-01 14:05:16
阅读次数:
240
public class HuaUtilitityImage: NSObject { // 普通渲染 public func renderingImageWithTintColor(image: UIImage?,_ tintColor: UIColor) -> UIImage?{ return r ...
分类:
编程语言 时间:
2016-11-30 02:40:45
阅读次数:
269
先看两行代码:1. 2. 相信大家对上面的两行代码都不会陌生 上一行:UIColor原本是没有读取十六进制颜色值的方法的 下一行:UITableView原本是没有header属性的 那么,How it happened? Because of the Category! Category(类别)简介 ...
分类:
其他好文 时间:
2016-11-29 16:50:26
阅读次数:
191
需求:在FirstViewController中点击"接收"按钮接收来自SecondViewController的block传递的值 步骤如下: 1.在SecondViewController .h文件中声明block 2.在SecondViewController .m文件中实现 - (void) ...
分类:
其他好文 时间:
2016-11-27 16:41:56
阅读次数:
209