|
//
// otherPersonModel.h
// ThePaperHD
//
// Created by liyuan on 15/7/14.
// Copyright (c) 2015年 scar1900. All rights reserved.
// 我的动态viewmodel
#import <Foundation/Foundation.h>
@protocol otherDelegate <NSObject>
@optional
-(void) returnDataList:(NSMutableArray*) data heightArray:(NSMutableArray*) array nextUrl:(NSString*) url;
-(void) returnUserBo:(NSString*)title sname:(NSString*)name imageUrl:(NSString*)url ismale:(BOOL)ismale isAuth:(BOOL) isAuth sign:(NSString*) sign userBo:(userBO*) user;
-(void) returnNextUrlData:(NSMutableArray*) data heightArray:(NSMutableArray*) array nextUrl:(NSString*) url;
-(void) returnNoData;
@end
@interface otherPersonModel : NSObject
@property(nonatomic, weak)id<otherDelegate> otherDele;
@property(nonatomic, strong) NSMutableDictionary *dataDict;
@property(nonatomic, strong) NSMutableArray *oldArray;
@property(nonatomic, strong) NSString *nextUrl;
@end
|