如何在iOS APP开发中插入和删除行
展开全部
分MVC三层设计;自定义的Cell有两种;一种是MainCell,由ModelArr提供数据源;另一种是插入的cell,由代码创建,并且由另外一个数组供状态数据<喎�"http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vc3Ryb25nPjxicj4KCgrK/b7d1LSyv7fWOjxicj4KCgo8aW1nIHNyYz0="http://www.2cto.com/uploadfile/Collfiles/20141020/20141020084601125.png" alt="\">
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// MyProjectCellModel.h
// 动态插入删除行
//
// Created by beyond on 14-10-18.
// Copyright (c) 2014年 com.beyond All rights reserved.
// 列表 的cell用到的数据模型
#import <foundation foundation.h="">
@interface MyProjectCellModel : NSObject
// 图标
@property (nonatomic,copy) NSString *icon;
// 标题
@property (nonatomic,copy) NSString *title;
// 发布状态
@property (nonatomic,copy) NSString *publishStatus;
// 日期
@property (nonatomic,copy) NSString *date;
// 多少人关注
@property (nonatomic,copy) NSString *num;
// 点击最右侧的按钮,需要进行什么操作??弹出一个View,用于修改发布的状态???
// 类方法,字典 转 对象 类似javaBean一次性填充
+ (MyProjectCellModel *)modelWithDict:(NSDictionary *)dict;
// 对象方法,设置对象的属性后,返回对象
- (MyProjectCellModel *)initWithDict:(NSDictionary *)dict;
@end
</foundation>
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<span style="color:#330033;">//
// MyProjectCellModel.m
// 动态插入删除行
//
// Created by beyond on 14-10-18.
// Copyright (c) 2014年 com.beyond All rights reserved.
// 列表 的cell用到的数据模型
#import "MyProjectCellModel.h"
@implementation MyProjectCellModel
// 类方法,字典 转 对象 类似javaBean一次性填充
+ (MyProjectCellModel *)modelWithDict:(NSDictionary *)dict
{
// 只是调用对象的initWithDict方法,之所以用self是为了对子类进行兼容
return [[self alloc]initWithDict:dict];
}
// 对象方法,设置对象的属性后,返回对象
- (MyProjectCellModel *)initWithDict:(NSDictionary *)dict
{
// 必须先调用父类NSObject的init方法
if (self = [super init]) {
// 设置对象自己的属性
[self setValuesForKeysWithDictionary:dict];
}
// 返回填充好的对象
return self;
}
@end
</span>
主Cell,由xib和类声明、类实现组成
\
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// MyProjectCellModel.h
// 动态插入删除行
//
// Created by beyond on 14-10-18.
// Copyright (c) 2014年 com.beyond All rights reserved.
// 列表 的cell用到的数据模型
#import <foundation foundation.h="">
@interface MyProjectCellModel : NSObject
// 图标
@property (nonatomic,copy) NSString *icon;
// 标题
@property (nonatomic,copy) NSString *title;
// 发布状态
@property (nonatomic,copy) NSString *publishStatus;
// 日期
@property (nonatomic,copy) NSString *date;
// 多少人关注
@property (nonatomic,copy) NSString *num;
// 点击最右侧的按钮,需要进行什么操作??弹出一个View,用于修改发布的状态???
// 类方法,字典 转 对象 类似javaBean一次性填充
+ (MyProjectCellModel *)modelWithDict:(NSDictionary *)dict;
// 对象方法,设置对象的属性后,返回对象
- (MyProjectCellModel *)initWithDict:(NSDictionary *)dict;
@end
</foundation>
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<span style="color:#330033;">//
// MyProjectCellModel.m
// 动态插入删除行
//
// Created by beyond on 14-10-18.
// Copyright (c) 2014年 com.beyond All rights reserved.
// 列表 的cell用到的数据模型
#import "MyProjectCellModel.h"
@implementation MyProjectCellModel
// 类方法,字典 转 对象 类似javaBean一次性填充
+ (MyProjectCellModel *)modelWithDict:(NSDictionary *)dict
{
// 只是调用对象的initWithDict方法,之所以用self是为了对子类进行兼容
return [[self alloc]initWithDict:dict];
}
// 对象方法,设置对象的属性后,返回对象
- (MyProjectCellModel *)initWithDict:(NSDictionary *)dict
{
// 必须先调用父类NSObject的init方法
if (self = [super init]) {
// 设置对象自己的属性
[self setValuesForKeysWithDictionary:dict];
}
// 返回填充好的对象
return self;
}
@end
</span>
主Cell,由xib和类声明、类实现组成
\
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询