OC语言(会持续添加)
1.搭建cell注意
- 在storyBoard中,如果直接在tableView中搭建cell,那么在代码中可以不用注册代码
- 如果直接使用xib创建cell,那么使用这个cell需要注册。
2.给leftBarButtonItem添加左边距
UIBarButtonItem *leftButon = [UIBarButtonItem initWithImageName:@"navigationbar_menu" target:self action:@selector(leftBarItemClick)];
UIBarButtonItem *fixedButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
fixedButton.width = -10;
self.navigationItem.leftBarButtonItems = @[fixedButton, leftButon];
3.清除xcode里多余的profile
- 点击桌面,快捷键commang+shift+G ,前往文件夹
~/Library/MobileDevice/Provisioning Profiles
网友评论