yykit报警告
下面方法控制转场切换隐藏和显示NavigationBar,侧滑返回Navigation混乱
//-(void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
//
// if ([viewController isKindOfClass:[KLBaseViewController class]]) {
// KLBaseViewController * vc = (KLBaseViewController *)viewController;
// if (vc.isHidenNaviBar) {
// [vc.navigationController setNavigationBarHidden:YES animated:animated];
// }else{
// [vc.navigationController setNavigationBarHidden:NO animated:animated];
// }
// }
//}
tabBarItem不设置图片,设置title不显示
引入UIbutton第三方分类,分类重写load方法,导致系统UIbutton出现异常
MBProgressHUD自定义第三方分类调用崩溃,提示找不到该方法,原因为compile Sources没有该分类.m文件,该死的Xcode9,bug多如牛毛
Xcode突然没有智能提示
1.重启Xcode
2.重启Mac
3.删除该路径下的文件夹 ~/Library/Developer/Xcode/DerivedData 在DeriveData下应该有一个(很多)你创建过工程名的文件夹,删除对应的那个就可以了
4.删除该路径下 ~/Library/Caches 一个名为com.apple.dt.Xcode的文件
HTTP请求头里面有参数的值如果有汉字,改参数服务器端收到后为空,所以需要对汉字进行转码
UITableView-FDTemplateLayoutCell 在满足下面两个条件时会crash
10.2系统以上
label 需要换行
解决办法:设置需要换行的label的preferredMaxLayoutWidth值链接
如果设置完毕还是无效,那么继续设置estimatedRowHeight
UIPageViewController子控制器tableviewiOS11以下顶部位置异常,未解决
UITableView UITableViewStyleGrouped模式下顶部留白
_tableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, KScreenWidth, CGFLOAT_MIN)];
xib 中UIbutton背景有蓝色,将type 改为custom
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
KLInviteMasterTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:[KLInviteMasterTableViewCell identifier] forIndexPath:indexPath];
KLMaster *model = self.dataArray[indexPath.row];
cell.model = model;
@weakify(self)
cell.selectBlock = ^(UIButton *sender) {
@strongify(self)
//更新现在的选中行
model.select = YES;
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
//用tableView而不是self.tableView,在Controller销毁时,tableview不会销毁,而造成循环引用
//[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
};
return cell;
}
如何实现UINavigationController控制下的控制器跨级跳转及边缘左侧右滑手势的处理
解决cocoapod警告,将这个值设为YES
image.png
网友评论