tableviewCell折叠状态3

//

//  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

 

 

posted @ 2016-05-27 14:50  李洪强  阅读(170)  评论(0编辑  收藏  举报