4
votes
2answers
394 views

How can I config CocoaPods to use https://github.com/RestKit/cocoa-oauth instead of the outdated one?

In a newly created Xcode project with ARC enabled, there are warning messages in RKRequest.m: Semantic Issue: Instance method '-hostAndPort' not found (return type defaults to 'id') Semantic Issue: ...
2
votes
1answer
185 views

UILocalNotification nil userInfo

I try to cancel a Local notification. I attach a dict with a Id for locate it later: + (void) send:(NSString*)title actionText:(NSString *)actionText when:(NSDate *)when count:(NSInteger)count ...
1
vote
1answer
181 views

What should I do with warnings that show up after upgrading to ARC code?

I got 213 warning. Here are some and their issues: UserController.m: ARC Issue — Assigning retained object to unsafe property; object will be released after assignment V r’ ...
0
votes
1answer
300 views

Memory leak in [UITableView _setupTableViewCommon] under ARC

I'm using the iOS Master/Detail template provided with XCode 4.2 (beta 4) with ARC for memory management, compiling for an iOS 4.3 target. Instruments reports that all is fine with my code, but I ...
1
vote
0answers
81 views

Setting compiler flags per file in projct template file TemplateInfo.plist

I created a project template file - TemplateInfo.plist which is defined with ARC usage. There are a few external files which I included in the template that are not ARC supported. In a regular project ...
1
vote
0answers
367 views

DIOS Drupal SDK ARC problems in new Xcode?

I'm trying to run the example program for Drupal iOS SDK as downloaded here https://github.com/workhabitinc/drupal-ios-sdk-example But, I can't build the project because of the ARC problems as in the ...
1
vote
0answers
223 views

EXC_BAD_ACCES in cxx_destruct error

I upgrade my lib to ARC and run as static lib in another non-arc project. I getting a EXC_BAD_ACCES and the debugger stop on CLASSNAME.cxx_destruct. Is this a kind of new issue with ARC or is the ...
0
votes
0answers
85 views

Why am I getting an ARC error with this method?

this here is the method im using to display items on the screen but the line CGSize gameAreaSize = [controller gameAreaSize]; says that receiver type controller2 for instance message does not ...
0
votes
0answers
361 views

Xcode 4 Recording/playing audio issue during transition from iOS 4 to iOS 5

I have a simple application that record and play audio, the application works fine when using Xcode4 iOS 5 without ARC. but when using iOS 5 + ARC, it compiles with no error but I get no sound when ...