MBMapkit
/Users/dongkui/ios_api/branches/1.0.x/code/config/MBMapDemo/MBMapkit/MBMapkit/MBListResult.h
00001 //
00002 //  MBListResult.h
00003 //  MBMapkit_library
00004 //
00005 //  Created by 张嘉伟 on 11-10-26.
00006 //  Copyright 2011 Mapbar Inc. All rights reserved.
00007 //
00008 
00009 #import <Foundation/Foundation.h>
00010 
00016 @interface MBListResult : NSObject
00017 {
00018 @private
00019     NSDictionary *_result;
00020     NSUInteger _totalCount;
00021     NSUInteger _pageNumber;
00022     NSUInteger _pageCount;
00023     NSArray *_resultList;
00024 }
00025 
00030 @property (nonatomic, readonly) NSUInteger totalCount;
00031 
00036 @property (nonatomic, readonly) NSUInteger pageNumber;
00037 
00042 @property (nonatomic, readonly) NSUInteger pageCount;
00043 
00048 @property (nonatomic, readonly) NSArray *resultList;
00049 
00055 - (id)initWithResult:(NSDictionary *)result;
00056 
00057 @end
 全部  函数 变量 属性