下面的代碼運行之後會報錯:
NSString *string=@"some string";
[self.dataResponse setValue:string forKey:@"Code"];
我還這樣試過:
NSString *string=@"some string";
[self.dataResponse setObject:string forKey:@"Code"];
但是這兩段代碼都會出現nsmutable dictionary self.dataResponse is null。
不知道哪裡出錯了?
謝謝。
self.dataResponse 沒初始化