UILabel * label = [[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 195, 195)] autorelease]; label.text = htmlStr; label.textColor = [UIColor colorWithR
分类:
移动开发 时间:
2016-02-29 16:28:16
阅读次数:
166
FirstColor 跟 CornerRadious 都是新增的显示属性具体实现方法如下: @property(nonatomic,weak)IBInspectable UIColor *firstColor; /...................................../ - (v
分类:
其他好文 时间:
2016-02-28 10:58:48
阅读次数:
294
#import "MyView.h" IB_DESIGNABLE @interface MyView () @property (nonatomic, strong) IBInspectable UIColor * borderColor; @property (nonatomic, assign)
分类:
移动开发 时间:
2016-02-25 10:16:54
阅读次数:
174
水波纹效果 Code 1.-(void)drawRect:(CGRect)rect {2. [super drawRect:rect];3. [[UIColor colorWithRed:22 / 255.0 green:163 / 255.0 blue:130 / 255.0 alpha:1] s
分类:
其他好文 时间:
2016-02-24 22:37:15
阅读次数:
263
UISwitch(开关,默认为关)IOS开发中必不可少的基本控件,主要用于只有两种的选择,比如飞行模式等等,本文主要是列出常用的属性及方法(注XCode版本为7.2)//默认状态//属性@property(nullable,nonatomic,strong)UIColor*onTintColor;//开着的时候控件的颜色代码:one.onTintCo..
分类:
移动开发 时间:
2016-02-24 21:14:29
阅读次数:
281
1 + (UIColor *)colorWithRGB:(NSString *)rgbstr{ 2 NSString *newrgbstr = [rgbstr uppercaseString]; 3 NSInteger strlen = newrgbstr.length; 4 UIColor *co
分类:
其他好文 时间:
2016-02-23 13:09:27
阅读次数:
119
self.window.backgroundColor = [UIColor whiteColor]; //导航视图控制器也是一个视图控制器,TA管理了多个子视图控制器,是系统提供给我们的容器视图控制器。 //导航视图控制器至少管理一个子视图控制器,这个视图控制器称为导航视图控制器的根视图控制器 /
分类:
其他好文 时间:
2016-02-22 15:18:06
阅读次数:
137
一、block延伸:页面间反向传值 1)first页面的代码 - (void)viewDidLoad { [super viewDidLoad]; [self setupBtn]; self.view.backgroundColor = [UIColor whiteColor]; } - (void
分类:
其他好文 时间:
2016-02-19 12:09:07
阅读次数:
105
UIView *headView = [[UIView alloc] initWithFrame:CGRectMake(0, 20, kScreenWidth, 44)]; headView.backgroundColor = [UIColor clearColor]; [self.view add
分类:
其他好文 时间:
2016-02-18 17:53:36
阅读次数:
190
// 在ios5之前, 再通过以下方法设置背景时, 有闪屏bug self.view.backgroundColor = [UIColor colorWithPatternImage:<#(nonnull UIImage *)#>]; // 解决方案 self.view.layer.contents
分类:
其他好文 时间:
2016-02-17 12:27:12
阅读次数:
116