三种情况,四种方法:情况一:加载xib中描述的cell情况二:加载纯代码自定义的cell情况三:加载storyBoard中的tableView内的cell针对于情况一:// 导入自定义cell的.h文件,在viewDidLoad方法中注册xib中描述的cell,因为只需要注册一次,所以选择在view...
分类:
其他好文 时间:
2015-10-05 18:12:01
阅读次数:
396
一、简单-代理过程1,创建代理@class TgFootView;@protocol TgFootViewDelegate @optional 可选是否实现视图的下载按钮被点击- (void)tgFootViewDidDownloadButtonClick:(TgFootView *)footVi....
分类:
移动开发 时间:
2015-10-05 01:54:13
阅读次数:
239
#import "MJViewController.h"#import "MJCarGroup.h"@interface MJViewController () @property (weak, nonatomic) IBOutlet UITableView *tableView;@property...
分类:
移动开发 时间:
2015-10-04 22:12:22
阅读次数:
382
在使用tableviewcontroller的时候,如果没有设置行高,会产生下面的警告,并且出现下面的混乱的表格 解决办法:使用代理方法,设置表格的行高,比如 -(CGFloat)tableView:(UITableView *)tableView heightForRowA...
分类:
其他好文 时间:
2015-10-04 21:04:56
阅读次数:
211
1.设置tableView的headerView注要以下几个:#pragma mark - tableView代理方法
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
// 取得一个自定义的 headerView
QJHeaderView * hea...
分类:
其他好文 时间:
2015-10-04 16:00:44
阅读次数:
235
出错:this class is not key value coding-compliant for the key1.检查各种连线,多连线,少连线都会导致错误 2.检查自定义cell的class:3.检查cell的file's owner的class:4.自定义cell的Identificat....
分类:
移动开发 时间:
2015-10-04 12:23:11
阅读次数:
207
UIImage:
》1.对于一张图片拉伸方法:
1.1.得先拿到一张图片img;
1.2.再跟据img的size 分出四根线(top,left,bottom,right)大小,那么四周的图片不会被拉伸,中间的会被拉伸。
1.3.调用以下的方法,参数:UIEdgeInsetsMake(top,left,bottom,right); UIImageResizingMod...
分类:
其他好文 时间:
2015-10-02 20:01:41
阅读次数:
202
因为少了[[UITableView alloc] init];这一句。编写iOS的时候注意,用一个东西要先定义,再实现。使用的时候先定义,再申请内存。
分类:
其他好文 时间:
2015-09-29 21:57:32
阅读次数:
119
iOS开发UI篇—直接使用UITableView Controller一、一般过程 1 // 2 // YYViewController.h 3 // UITableView Controller 4 // 5 // Created by 孔医己 on 14-6-2. 6 // Copyri...
分类:
移动开发 时间:
2015-09-29 20:39:58
阅读次数:
259
iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一)一、项目结构和plist文件二、实现代码1.说明:主控制器直接继承UITableViewController // YYViewController.h// 02-QQ好友列表(基本数据的加载)//// Created...
分类:
移动开发 时间:
2015-09-29 20:33:57
阅读次数:
241