码迷,mamicode.com
首页 >  
搜索关键字:addsubview    ( 212个结果
绘制虚线
UIImageView *dottedLineView = [[UIImageView alloc]initWithFrame:CGRectMake(25, 130, GetWindowsFrameWidth - 50, 2)]; [self addSubview:dottedLineVi...
分类:其他好文   时间:2015-12-19 13:46:31    阅读次数:127
ChildViewController
//添加[self addChildViewController:newVC];//[newVC willMoveToParentViewController:self];[self.view addSubview:newVC.view];[newVC didMoveToPar...
分类:其他好文   时间:2015-12-19 00:10:04    阅读次数:313
ios开发同一个lab显示不同的颜色
闲来无事自己把自己学的东西发表出来供大家使用学习。UILabel *lab = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 200, 30)]; [self.view addSubview:lab]; NSMutableAttribut.....
分类:移动开发   时间:2015-12-17 18:51:26    阅读次数:169
layoutSubviews 与 drawRect
layoutSubviews在以下情况下会被调用:1、init初始化不会触发layoutSubviews。2、addSubview会触发layoutSubviews。3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生了变化。4、滚动一个UIScrol...
分类:其他好文   时间:2015-12-14 21:18:43    阅读次数:154
微博弹性按钮
//微博弹性动画- (void)moveInAnimation{ UIView *centerV = [[UIView alloc] initWithFrame:CGRectMake(0, 200, 300, 100)]; [self.view addSubview:centerV]; ...
分类:其他好文   时间:2015-12-14 19:02:05    阅读次数:143
layoutSubviews 被调用的情况
layoutSubviews在以下情况下会被调用:1、init初始化不会触发layoutSubviews2、addSubview会触发layoutSubviews3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生了变化4、滚动一个UIScrollVi...
分类:其他好文   时间:2015-12-14 18:06:54    阅读次数:150
swift视图的添加及层次变动和基本动画
// 一般的我们添加一个视图到父视图都是通过 /* let v1 = UIView(frame:CGRectMake(100,200,30,50)) self.view.addSubview(v1) // self...
分类:编程语言   时间:2015-12-09 13:28:51    阅读次数:2692
iOS开发笔记--什么时候调用layoutSubviews
今天在写程序时候遇见layoutSubviews触发时候引起的问题。特来总结一下什么时候会触发layoutSubviews:layoutSubviews在以下情况下会被调用:1、init初始化不会触发layoutSubviews2、addSubview会触发layoutSubviews3、设置vie...
分类:移动开发   时间:2015-12-06 17:32:39    阅读次数:140
iOS加载xib方法
使用bundle加载xib,代码如下: UIView *appInfoView = [[[NSBundle mainBundle] loadNibNamed:@"xibName" owner:nil options:nil] lastObject]; [self.view addSubview:ap...
分类:移动开发   时间:2015-12-06 12:52:19    阅读次数:1129
[代码]label增加删除线
UILabel *lable = [[UILabel alloc] initWithFrame:CGRectMake(20, 60, 100, 30)];[self.view addSubview:lable];lable.backgroundColor = [UIColor redColor];l...
分类:其他好文   时间:2015-12-02 16:15:47    阅读次数:153
212条   上一页 1 ... 6 7 8 9 10 ... 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!