Reputation: 812
After i heard about ARC feature and how it is reduced dealing with memory i have converted my application which building dynamic forms but still when i make synchronization (Writing huge data on CoreData) from web-service.Is there any guide lines should apply it on application to utilized ARC technology .Our log show that there is a (Received memory warning. Level=1)
Upvotes: 1
Views: 273
Reputation: 14304
Using ARC doesn't magically reduce memory usage - it prevents human error from making memory-consuming mistakes. There is still great importance in understanding reference counting and general memory management in Objective-C even though you're utilizing ARC.
Upvotes: 5