-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS 5.0/ARC, fails on device in OAMutableURLRequest, CFRelease #85
Comments
Did you hear back about this? Having the same issue but in the sim as well. |
same for me...thinking about switching to the iOS Twitter integrated library...although would gladly welcome any sugestion!!! |
I have this prob too... struggling with it for few days. Can any one give some suggestions? |
I tried author's DEMO but still failed. Nothing with ARC, all the iOS5 environment will get this problem. |
Change http to https in SA_OauthTwitterEngine.m and this should fix the problem - like so: self.requestTokenURL = [NSURL URLWithString: @"https://twitter.com/oauth/request_token"]; |
WOW!!!! Thanks NSDestroyer!! But I wonder how could this fix the problem. Twitter disabled the http link and only let https work? |
I changed the URLs but am still getting the error on iOS 4.3 when using ARC. |
Built the library, and my project which is working fine in the simulator but failing on the device in OAMutableURLRequest when attempting to call CFRelease.
I'm wondering if the fact that I'm using ARC for the rest of my project could be contributing to this? Of course, if that were the case, I wouldn't expect it to work in the simulator either. Nor does it make any sense that ARC would impact it, since ARC is applied at compile time, and the library is, of course, pre-compiled.
Perhaps the solution to my problem involves:
Changing the compilation settings for the library, to handle 5.0 or something else
Improperly including the library in my project
Any hints or suggestions will be most appreciated!
The text was updated successfully, but these errors were encountered: