01 2015 档案

摘要:self.chineseSubtitleLabel.adjustsFontSizeToFitWidth = YES; 阅读全文
posted @ 2015-01-28 18:09 在bug中前行 阅读(125) 评论(0) 推荐(0)
摘要:NSString *nameString = self.dataArray[indexPath.row][@"user"]; NSDictionary *nameLabelAttr=@{NSFontAttributeName:LLShowMessageNameFont}; //// ... 阅读全文
posted @ 2015-01-26 14:14 在bug中前行 阅读(266) 评论(0) 推荐(0)
摘要:mainTableView.sectionIndexBackgroundColor = [UIColor greenColor];//修改右边索引的背景色// mainTableView.sectionIndexColor = [UIColor orangeColor];//修改右边索引字体的... 阅读全文
posted @ 2015-01-23 11:59 在bug中前行 阅读(1019) 评论(0) 推荐(0)
摘要:tableview的分割线左对齐 在viewDidLoad方法中加上如下代码: if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {[self.tableView setSeparatorInset:UIEd... 阅读全文
posted @ 2015-01-22 13:58 在bug中前行 阅读(270) 评论(0) 推荐(0)
摘要://button.titleLabel.textAlignment=NSTextAlignmentLeft;这句无效 button.contentHorizontalAlignment=UIControlContentHorizontalAlignmentLeft;button.titleEdgeI... 阅读全文
posted @ 2015-01-07 18:17 在bug中前行 阅读(356) 评论(0) 推荐(0)
摘要:导入pch 文件,要关联pch:最重要的一步就是,要在pch中添加如下代码:#import #ifndef __IPHONE_3_0#warning "This project uses features only available in iOS SDK 3.0 and later."#endif... 阅读全文
posted @ 2015-01-05 18:42 在bug中前行 阅读(235) 评论(0) 推荐(0)
摘要:先是 html 文件内容// index.html John : This is out Rich Text Editing View 加载 html 文件- (void)viewDidLoad{ [super ... 阅读全文
posted @ 2015-01-04 10:44 在bug中前行 阅读(242) 评论(0) 推荐(0)