十一论剑之iOS项目实战(三)

2016-09-28  本文已影响62人  阿拉斯加的狗

frame和bounds的重新认识

bounds和frame的区别

bounds和frame的区别.png

矩形框和内容的理解

在使用UITableViewController过程中,可能会出现的错误

@interface TestTableViewController : UITableViewController

@end

'-[UITableViewController loadView] instantiated view controller with identifier "UIViewController-BYZ-38-t0r" from storyboard "Main", but didn't get a UITableView.'
Snip20151108_134.png Snip20151108_137.png ![Uploading Snip20151108_137_952556.png . . .]

contentInset的调整

控制器A.automaticallyAdjustsScrollViewInsets = NO;

文字内容换行

self.label.text = @"534534534\n5345345\n5345";

修改状态栏样式

Snip20151108_152.png
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
@implementation XMGLoginRegisterViewController
- (UIStatusBarStyle)preferredStatusBarStyle
{
    return UIStatusBarStyleLightContent;
}
@end

在xib\storyboard中使用KVC

Snip20151108_177.png
上一篇 下一篇

猜你喜欢

热点阅读