-
Notifications
You must be signed in to change notification settings - Fork 148
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
EXC_BAD_ACCESS on function initWithAPIKey #21
Comments
If I change the code line for the next one, there is not EXC_BAD_ADDRESS at this point.
And key property retain instead of readonly. I think I'm doing something bad. Or the library doesn't work with the latest iOS sdk version? Thanks |
I closed the issue accidentally. |
I have the same issue... exactly on the same line. @Hydex: have you resolved this issue? Did you find any solutions? |
@mediamac1 I solved the issue. Don't know what did exactly, but the problem was about linking the library, choosing the architecture which it was compiled, or something like this. As you could see, the way described in the guide about linking the library doesn't apply to Xcode 4.1. When I solved the problem, I got an EXC_BAD_ACCESS on the next line:
I solved this changing the next code lines: ` to:
but I had problems later. Finally I decided not to use this library and choose a generic OAuth library. Mabye some other person could show us the light. |
I'm getting an EXC_BAD_ACCESS when debugger is processing function initWithAPIWey on OFFlickrAPIContext class.
When debugger is at this point:
On the last code line, I can see inKey has the value of the constant I defined on SampleAPIKey.h . inKey is a NSCFString and key is NSString. Key value is nil.
Do you know what could it happens? I'm using Xcode 4.
Thanks for your help!
The text was updated successfully, but these errors were encountered: