我不知道如何管理這一點,因爲Objective-C的是奇怪的足以讓我 我有這樣的派生類目標C初始化,並進一步分配
@interface DoctorsSet : NSObject { NSString *tableid;
NSString *doctor_name;
NSString *doctor_surname;
NSString *city;
NSString *State;
NSString *phone; }
它有一個自定義構造函數,我正在初始化屬性爲參數...
問題是我有幾個函數返回這個類型,所以我如何分配給這個類型的臨時局部變量,或者如果我的數據來自一個NSMutableArray並且我想要索引ID爲
這裏有2例,我無法處理,因爲分配給它的訪問錯誤
NSMutableDictionary *doctors_set;
for(i=[doctors_sets count]-1;i>=0;i--) {
//this doesn't work
DoctorsSet * set=[doctors_set objectAtIndex:i];
}
我不想使用爲(DoctorsSet *在doctors_sets設置) 因爲我想通過以相反的順序排列....
什麼是你得到的錯誤去? – kubi 2011-04-09 02:04:40