Tagged Questions
3
votes
2answers
193 views
What is best practice for new NSObject - alloc / init or change existing?
I would like to get some opinion about best practice in iOS5 and higher (ARC enabled). For example, I have a database with cars - image, name, max speed, etc. info. In app I have to show a car with ...
0
votes
0answers
104 views
Pass NSDictionary from NSObject to ViewController
I'm trying to create a dictionary inside locationManager method in my object and then use it in my view controller. I can't get it to work. Does anyone have any advice?
Here's what i got so far:
...
0
votes
1answer
246 views
How to copy custom NSObject into NSMutableArray
NSDictionary* json = [NSJSONSerialization
JSONObjectWithData:responseData
options:kNilOptions
error:&error];
NSArray* users = ...
0
votes
1answer
1k views
Creating a JSONObject in iOS5
This answer seems to show how to make a JSONObject.
NSString *jsonString = @"[{\"id\": \"1\", \"name\":\"Aaa\"}, {\"id\": \"2\", \"name\":\"Bbb\"}]";
NSData *jsonData = [jsonString ...
1
vote
0answers
112 views
ios5: Launch email from NSObject class while inside another modal view
I have a common action sheet (in NSObject class) that is called from multiple classes. One of the actions is launching email. Everything works great when called from the first NIB loaded. However, ...