1、初始化 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; [btn setFrame:CGRectMake(100, 100, 60, 60)]; [self.view addSubview:btn]; 2、常用设置 设置 ...
分类:
其他好文 时间:
2016-08-13 08:49:56
阅读次数:
165
注意:未经本人同意,请勿转发 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0 , 100, 200, 44)]; [self.view addSubview:label]; NSMutableAttributedString ...
分类:
其他好文 时间:
2016-08-02 11:36:40
阅读次数:
168
UIView*view1=[[UIView alloc]initWithFrame:CGRectMake(10,30,300,30)]; view1.backgroundColor=[UIColor redColor]; [self.window addSubview:view1]; [view1 ...
分类:
其他好文 时间:
2016-08-01 06:52:42
阅读次数:
194
1\初始化 UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(10, 20, 200, 30)]; [self.view addSubview:searchBar]; searchBar.delegate = ...
分类:
其他好文 时间:
2016-06-19 12:52:27
阅读次数:
129
子视图是以栈的方式存放的。 每次addsubview时都是在最后面添加。 每次在addsubview前和addsubview后可以看看[self.view.subViews count]; 你看看你的子视图是被添加到哪个位置了。 另外[self.view addSubView:xx.view] 其实 ...
分类:
其他好文 时间:
2016-06-17 19:10:58
阅读次数:
162
iOS Layout机制相关方法 ——————- ——————– layoutSubviews在以下情况下会被调用: 1、init初始化不会触发layoutSubviews 但是是用initWithFrame 进行初始化时,当rect的值不为CGRectZero时,也会触发 2、addSubview ...
分类:
移动开发 时间:
2016-06-15 18:49:51
阅读次数:
142
一.初始化:UISearchBar继承于UIView,我们可以像创建View那样创建searchBar
UISearchBar * bar = [[UISearchBar alloc]initWithFrame:CGRectMake(20, 100, 250, 40)];
[self.view addSubview:bar];
二.属性
@property(nonato...
分类:
移动开发 时间:
2016-06-12 03:30:10
阅读次数:
330
1、init初始化不会触发layoutSubviews2、addSubview会触发layoutSubviews3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生了变化4、滚动一个UIScrollView会触发layoutSubviews5、旋转Sc ...
分类:
其他好文 时间:
2016-06-07 19:03:00
阅读次数:
139
首先确保一份已经配好功能的html文件。 1.初始化一个webview(viewdidload) UIWebView* webView = [[UIWebView alloc] initWithFrame:self.view.bounds]; [self.view addSubview:webVie ...
分类:
编程语言 时间:
2016-06-06 16:31:49
阅读次数:
294
骑马,马跑起来很帅,滑沙,摩托艇,保险,理财 push崩溃,先hidden再dismiss 血的教训,UITextView 不要用addsubview方法 http://www.jianshu.com/p/1c453fa3be88 报错信息: ***** Assertion failure in - ...
分类:
其他好文 时间:
2016-05-30 10:08:26
阅读次数:
168