In my app I'm using the project Route Me Map and this project don't use ARC; at the same time I should use MKSToreKit and its version at 4.0 implement ARC model; In this situation what I should to do? The best solution that I have in my head is to find an old version of MKStoreKit. Do you have other solution?
Thanks
Don't ever use MRC (non-ARC) unless absolutely necessary. Xcode is great at converting MRC code to ARC code (Edit->Refactor->Convert to Objective-C ARC...), so just use that and you'll be fine.