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