-
Notifications
You must be signed in to change notification settings - Fork 216
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
Delegate objects are nullified in dealloc() method #163
base: develop
Are you sure you want to change the base?
Conversation
To make physical structure match the framework layout
#import "NXOAuth2Account.h" | ||
#import <OAuth2Client/NXOAuth2Account.h> | ||
|
||
@protocol NXApplication; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To keep in line with the framework this should be called NXOAuth2Application
Generally we could convert the delegates to |
That would be a lot better. Still, I did not feel confident enough to introduce such major changes since I have not fully understood the instance ownership model of the library. Neither I do now. Meaning, there are
So I've made the changes as conservative and safe as I could. |
P.S. Most of UIKit classes still use Moreover, it does not matter that much for this library since |
True. You can use NXOAuth2Client on it's own without the NXOAuth2AccountStore and friends (indeed that was how it was first built) and in that case it works with delegates. If you use the higher level API as is appropriate in most use cases it's indeed not very relevant. |
I pushed up #204, making the delegates weak. |
Since delegates are
__unsafe_unretained
they should be set to nil manually whenever a corresponding object is released.I've added
dealloc
method to all classes where.delegate = self;
statement is used.The users have to do that as well, so this should be mentioned in the README, I guess.
Note : this pull request is based on from #155