You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very nice, and far more idiomatic, to be able to write someNSMutableDictionary[key] = value; the way I can in Obj-C, rather than having to use someNSMutableDictionarysetObject_forKey_(value, key); (which is a construction that basically nobody uses in modern Obj-C development).
Similarly for NSMutableArray.
The text was updated successfully, but these errors were encountered:
It would be very nice, and far more idiomatic, to be able to write
someNSMutableDictionary[key] = value;
the way I can in Obj-C, rather than having to usesomeNSMutableDictionarysetObject_forKey_(value, key);
(which is a construction that basically nobody uses in modern Obj-C development).Similarly for NSMutableArray.
The text was updated successfully, but these errors were encountered: