1
-(void)saveAsset:(NSUInteger) assetID
{
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
NSDictionary *parameters = @{@"asset_id": assetID};
但出現以下錯誤:
Collection element of type 'NSUInteger' (aka 'unsigned long') is not an Objective-C object
我如何分配呢?我曾嘗試:
NSDictionary *parameters = @{@"asset_id": [assetID integerValue]};
和
NSDictionary *parameters = @{@"asset_id": (id)assetID};
,但他們都不是工作。
THX
閱讀關於'NSDictionary'值可以是什麼類型的文檔的文檔。 – zaph 2014-09-27 09:31:19