Closed CullenSUN closed 11 years ago
Origin
//ARC-enable and disable support
@property(nonatomic,assign) id<FPPopoverControllerDelegate> delegate;
I believe should be this:
@property(nonatomic,weak) id<FPPopoverControllerDelegate> delegate;
I endorse this too. Why aren't there any comments on this post?
fixed. is in the last commit.
Origin
//ARC-enable and disable support
if __has_feature(objc_arc)
else
endif
I believe should be this:
//ARC-enable and disable support
if __has_feature(objc_arc)
else
endif