4
votes
1answer
85 views

iOS: Upgrade this animation code

I understand that this animation code is outdated: [UIView beginAnimations:@"Move" context:nil]; [UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; [UIView setAnimationDelay:0.08]; ...
2
votes
1answer
207 views

Can this game function/code be better?

I'm working on a game for iOS devices and this is the function we use to create server-loaded buildings. The server loading is in another function and everything works just fine, but I was wondering ...
2
votes
0answers
312 views

iOS: Parsing NSDictionary from NSJSONSerialization

playerObject is an NSDictionary from JSONObjectWithData:options:error: I'm trying to update a CoreData entity. My code looks like this: if ([results count] > 0) { newPlayer = (Player ...