zedoul/ZDStickerView

Why is the delegate strong?

Closed this issue · 2 comments

@property (strong, nonatomic) id <ZDStickerViewDelegate> delegate;
why strong?

It is just a mistake. I will fix to this like below:

@property (week) id <ZDStickerViewDelegate> delegate;
or
@property (unsafe_unretained) id <ZDStickerViewDelegate> delegate;

Fixed