09 2015 档案

ios NSMutableAttributedString 详解 显示不同的字体和颜色的字符串
摘要:NSAttributedString的初始化方法有: -initWithString:用String初始化,并没有Attributed信息。 -initWithAttributedString:用AttributedString去初始化。 -initWithString:Attributed:用st 阅读全文

posted @ 2015-09-07 11:02 codemaker313 阅读(5562) 评论(0) 推荐(0)

ios uitableview 去掉多余的空行
摘要:1 self.table.tableFooterView = [[UIView alloc] init]; 阅读全文

posted @ 2015-09-01 14:08 codemaker313 阅读(284) 评论(0) 推荐(0)

ios uitableview uitableviewcell 去掉分隔线
摘要:1 self.table.separatorStyle = NO; 阅读全文

posted @ 2015-09-01 14:07 codemaker313 阅读(248) 评论(0) 推荐(0)

ios tableviewcell 设置为禁止点击
摘要:设置cell 禁止点击- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ cell.selectionStyle = UITableVie... 阅读全文

posted @ 2015-09-01 14:06 codemaker313 阅读(3476) 评论(0) 推荐(0)

ios 时间戳转换成时间
摘要:时间戳转换成时间 1 NSDateFormatter* formatter = [[NSDateFormatter alloc] init]; 2 formatter.timeZone = [NSTimeZone timeZoneWithName:@"... 阅读全文

posted @ 2015-09-01 13:33 codemaker313 阅读(532) 评论(0) 推荐(0)

导航