UIImageView *dottedLineView = [[UIImageView alloc]initWithFrame:CGRectMake(25, 130, GetWindowsFrameWidth - 50, 2)]; [self addSubview:dottedLineVi...
分类:
其他好文 时间:
2015-12-19 13:46:31
阅读次数:
127
//添加[self addChildViewController:newVC];//[newVC willMoveToParentViewController:self];[self.view addSubview:newVC.view];[newVC didMoveToPar...
分类:
其他好文 时间:
2015-12-19 00:10:04
阅读次数:
313
闲来无事自己把自己学的东西发表出来供大家使用学习。UILabel *lab = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 200, 30)]; [self.view addSubview:lab]; NSMutableAttribut.....
分类:
移动开发 时间:
2015-12-17 18:51:26
阅读次数:
169
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在以下情况下会被调用:1、init初始化不会触发layoutSubviews2、addSubview会触发layoutSubviews3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生了变化4、滚动一个UIScrollVi...
分类:
其他好文 时间:
2015-12-14 18:06:54
阅读次数:
150
// 一般的我们添加一个视图到父视图都是通过 /* let v1 = UIView(frame:CGRectMake(100,200,30,50)) self.view.addSubview(v1) // self...
分类:
编程语言 时间:
2015-12-09 13:28:51
阅读次数:
2692
今天在写程序时候遇见layoutSubviews触发时候引起的问题。特来总结一下什么时候会触发layoutSubviews:layoutSubviews在以下情况下会被调用:1、init初始化不会触发layoutSubviews2、addSubview会触发layoutSubviews3、设置vie...
分类:
移动开发 时间:
2015-12-06 17:32:39
阅读次数:
140
使用bundle加载xib,代码如下: UIView *appInfoView = [[[NSBundle mainBundle] loadNibNamed:@"xibName" owner:nil options:nil] lastObject]; [self.view addSubview:ap...
分类:
移动开发 时间:
2015-12-06 12:52:19
阅读次数:
1129
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