码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
iOS 设置UILabel的行间距并自适应高度
NSString *contentStr = @"总以为,在最初的地方,有一个最原来的我,就也会有一个最原来的你"; UILabel *tempLabel = [[UILabel alloc] init]; //设置背景颜色 tempLabel.backgroundColor = [UIColor ... ...
分类:移动开发   时间:2016-12-24 19:17:24    阅读次数:195
ios根据文本自适应 然后 搭建类似如下效果
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
UI_APPEARANCE_SELECTOR 延伸
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
iOS 高阶
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
代码写界面的工厂类
...
分类:其他好文   时间:2016-12-01 14:22:52    阅读次数:268
Masonry的一些等间距布局
控件之间的间距相等,但是控件的宽度是不定的。 下列的代码:定义间距为10,yellowview的宽度是由redView的宽度计算出来的。 控件的宽度是一定的,但是控件之间的间距是不定的。 下列的代码:定义控件的宽度为22,控件之间的间距是由redView的宽度计算出来的。 ...
分类:其他好文   时间:2016-12-01 14:05:16    阅读次数:240
Swift图片原色渲染
public class HuaUtilitityImage: NSObject { // 普通渲染 public func renderingImageWithTintColor(image: UIImage?,_ tintColor: UIColor) -> UIImage?{ return r ...
分类:编程语言   时间:2016-11-30 02:40:45    阅读次数:269
Category在项目中的实际运用
先看两行代码:1. 2. 相信大家对上面的两行代码都不会陌生 上一行:UIColor原本是没有读取十六进制颜色值的方法的 下一行:UITableView原本是没有header属性的 那么,How it happened? Because of the Category! Category(类别)简介 ...
分类:其他好文   时间:2016-11-29 16:50:26    阅读次数:191
Block传值讲解与使用
需求:在FirstViewController中点击"接收"按钮接收来自SecondViewController的block传递的值 步骤如下: 1.在SecondViewController .h文件中声明block 2.在SecondViewController .m文件中实现 - (void) ...
分类:其他好文   时间:2016-11-27 16:41:56    阅读次数:209
848条   上一页 1 ... 12 13 14 15 16 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!