@@ -195,37 +195,42 @@ __attribute__((visibility("default"))) @interface QQApiURLObject : QQApiObject
195
195
@interface QQApiImageArrayForQZoneObject : QQApiObject
196
196
197
197
@property (nonatomic ,retain ) NSArray * imageDataArray;// /图片数组
198
+ @property (nonatomic ,retain ) NSDictionary * extMap; // 扩展字段
198
199
199
200
/* *
200
201
初始化方法
201
202
@param imageDataArray 图片数组
202
203
@param title 写说说的内容,可以为空
204
+ @param extMap 扩展字段
203
205
*/
204
- - (id )initWithImageArrayData : (NSArray *)imageDataArray title : (NSString *)title ;
206
+ - (id )initWithImageArrayData : (NSArray *)imageDataArray title : (NSString *)title extMap : ( NSDictionary *) extMap ;
205
207
206
208
/* *
207
209
helper方法获取一个autorelease的<code>QQApiExtendObject</code>对象
208
210
@param title 写说说的内容,可以为空
209
211
@param imageDataArray 发送的多张图片队列
212
+ @param extMap 扩展字段
210
213
@return
211
214
一个自动释放的<code>QQApiExtendObject</code>实例
212
215
*/
213
- + (id )objectWithimageDataArray : (NSArray *)imageDataArray title : (NSString *)title ;
216
+ + (id )objectWithimageDataArray : (NSArray *)imageDataArray title : (NSString *)title extMap : ( NSDictionary *) extMap ;
214
217
215
218
@end
216
219
217
220
// QQApiVideoForQZoneObject
218
221
/* * @brief 视频对象
219
222
用于分享视频到空间,走写说说路径<code>QQApiObject</code>
220
223
assetURL可传ALAsset的ALAssetPropertyAssetURL,或者PHAsset的localIdentifier
224
+ @param extMap 扩展字段
221
225
*/
222
226
@interface QQApiVideoForQZoneObject : QQApiObject
223
227
224
228
@property (nonatomic , retain ) NSString *assetURL;
229
+ @property (nonatomic ,retain ) NSDictionary * extMap; // 扩展字段
225
230
226
- - (id )initWithAssetURL : (NSString *)assetURL title : (NSString *)title ;
231
+ - (id )initWithAssetURL : (NSString *)assetURL title : (NSString *)title extMap : ( NSDictionary *) extMap ;
227
232
228
- + (id )objectWithAssetURL : (NSString *)assetURL title : (NSString *)title ;
233
+ + (id )objectWithAssetURL : (NSString *)assetURL title : (NSString *)title extMap : ( NSDictionary *) extMap ;
229
234
230
235
@end
231
236
0 commit comments