摘要:参考地址:http://www.360doc.com/content/14/1218/16/8085797_433906134.shtml
阅读全文
摘要:IOS的sdk中,对UITableViewCell的高亮背景色只支持两种颜色,分别为UITableViewCellSelectionStyleBlue和UITableViewCellSelectionStyleGray。那么如何自定义这个颜色呢。一个思路是当用户点下cell时设置你想要的cell的背...
阅读全文
摘要:.h#import @interface NSString (Extension)/** * 返回字符串所占用的尺寸 * * @param font 字体 * @param maxSize 最大尺寸 */- (CGSize)sizeWithFont:(UIFont *)font maxS...
阅读全文
摘要:http://blog.csdn.net/mad1989/article/details/41516743
阅读全文
摘要:封装,好处:减少viewcontroller累里的代码量,方便后期维护cell:.h1 #import 2 @class HMStatusFrame;3 4 @interface HMStatusCell : UITableViewCell5 + (instancetype)cellWithTabl...
阅读全文
摘要:// 加载storyboard UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Two" bundle:nil]; // 创建storyboard里面灰色的控制器 //找到shtoryboar...
阅读全文
摘要:参见地址:https://github.com/sxyx2008/DevArticles/issues/91
阅读全文
摘要:1- .h#import typedef enum { HMStatusDetailTopToolbarButtonTypeRetweeted, HMStatusDetailTopToolbarButtonTypeComment,} HMStatusDetailTopToolbarBut...
阅读全文
摘要:1.定义block的两种方式: -直接定义: //@property (nonatomic,copy) void (^callBack)(NSInteger index,id info); -type定义,重用 typedef void (^callBack)(NSInteger i...
阅读全文
摘要:1.UICollectionView实现不同大小cell等间距下载地址:http://download.csdn.net/detail/chchong1234/8692121
阅读全文