File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353/* *
5454 * the content view background color, default is white
5555 */
56- @property (nonatomic , strong ) UIColor *contentViewBackgroundColor;
56+ @property (nonatomic , strong ) UIColor * __nonnull contentViewBackgroundColor;
5757
5858/* *
5959 * the content view corner radius, default is 8.0
Original file line number Diff line number Diff line change @@ -16,26 +16,26 @@ typedef void(^FEPopupMenuItemActionBlock)(void);
1616/* *
1717 * init FEPopupMenuItem with title text and icon image
1818 */
19- - (instancetype __nonnull)initWithTitle : (NSString *)title iconImage : (UIImage *)iconImage action : (FEPopupMenuItemActionBlock)action ;
19+ - (instancetype __nonnull)initWithTitle : (NSString * __nonnull )title iconImage : (UIImage * __nonnull )iconImage action : (FEPopupMenuItemActionBlock __nullable )action ;
2020
2121/* *
2222 * title of item
2323 */
24- @property (nonatomic , copy ) NSString *title;
24+ @property (nonatomic , copy ) NSString * __nullable title;
2525
2626/* *
2727 * icon image of item
2828 */
29- @property (nonatomic , strong ) UIImage *iconImage;
29+ @property (nonatomic , strong ) UIImage * __nullable iconImage;
3030
3131/* *
3232 * callback of item when selected
3333 */
34- @property (nonatomic , copy ) FEPopupMenuItemActionBlock action;
34+ @property (nonatomic , copy ) FEPopupMenuItemActionBlock __nullable action;
3535
3636/* *
3737 * the color of title
3838 */
39- @property (nonatomic , strong ) UIColor *titleColor;
39+ @property (nonatomic , strong ) UIColor * __nullable titleColor;
4040
4141@end
You can’t perform that action at this time.
0 commit comments