07 2017 档案
摘要:一、去掉UItalbeview中所有横线 // self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; 二、自定义UItalbeview的self.footerView (去掉UItalbeview下面多余的横线) sel
阅读全文
摘要:2 判断字符串 - (BOOL) isBlankString:(NSString *)string { if (string == nil || string == NULL) { return YES; } if ([string isKindOfClass:[NSNull class]]) {
阅读全文
摘要:在下面代码中添加一下三句 在相应的警告上右击->Reveal in Log 警告类型 警告类型 被选中的-Wdeprecated-declarations就是我们所要的警告类型了。 -W是前缀,这个前缀表示的是 打开这种类型的警告 如果我们是要关闭某种类型的警告的话, 要将 -W换成 -Wno- 找
阅读全文