您的位置:首页 > 其它

tableviewCell折叠状态3

2016-05-27 14:50 225 查看
//

// LHQDelegateModel.h

// 11 - 投资管理 - 李洪强

//

// Created by vic fan on 16/4/13.

// Copyright © 2016年 李洪强. All rights reserved.

//

#import <Foundation/Foundation.h>

@interface LHQDelegateModel : NSObject

//标题

@property(nonatomic)NSString *titleName;

//存放内容的数组

@property(nonatomic)NSMutableArray *contentArr;

@end

-------------------------------------------------------

//

// LHQDelegateModel.m

// 11 - 投资管理 - 李洪强

//

// Created by vic fan on 16/4/13.

// Copyright © 2016年 李洪强. All rights reserved.

//

#import "LHQDelegateModel.h"

@implementation LHQDelegateModel

-(NSMutableArray *)contentArr

{

if (!_contentArr) {

_contentArr = [[NSMutableArray alloc] init];

}

return _contentArr;

}

@end
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: