Merge branch 'feature/fix_warnings' into 'develop'
warning fixes See merge request BPHV_MIPS/mvm_core_ui!6
This commit is contained in:
commit
1c55f01f43
@ -25,7 +25,7 @@
|
|||||||
@interface MFTextView : UIView <UITextViewDelegate>
|
@interface MFTextView : UIView <UITextViewDelegate>
|
||||||
|
|
||||||
@property (weak, nonatomic, nullable) id delegate;
|
@property (weak, nonatomic, nullable) id delegate;
|
||||||
@property (weak, nonatomic) IBOutlet CustomTextView *textView;
|
@property (nullable, weak, nonatomic) IBOutlet CustomTextView *textView;
|
||||||
@property (assign, nonatomic) BOOL hideBorder;
|
@property (assign, nonatomic) BOOL hideBorder;
|
||||||
@property (strong, nonatomic, nullable) UIBezierPath *borderPath;
|
@property (strong, nonatomic, nullable) UIBezierPath *borderPath;
|
||||||
@property (nonatomic, readwrite) BOOL errorShowing;
|
@property (nonatomic, readwrite) BOOL errorShowing;
|
||||||
|
|||||||
@ -108,7 +108,7 @@ typedef NS_ENUM(NSInteger, MFNumberOfDrawers) {
|
|||||||
#pragma mark - Main Subclassables
|
#pragma mark - Main Subclassables
|
||||||
|
|
||||||
// Can subclass to set threshold for when the drawers are permanently extended. Default is 1000 for the left panel and 2000 for both.
|
// Can subclass to set threshold for when the drawers are permanently extended. Default is 1000 for the left panel and 2000 for both.
|
||||||
- (MFNumberOfDrawers)numberOfDrawersShouldShow:(NSNumber *)forWidth;
|
- (MFNumberOfDrawers)numberOfDrawersShouldShow:(nullable NSNumber *)forWidth;
|
||||||
|
|
||||||
// subclass to return panels
|
// subclass to return panels
|
||||||
- (nullable UIViewController <MVMCoreUIPanelProtocol> *)createLeftPanelViewController;
|
- (nullable UIViewController <MVMCoreUIPanelProtocol> *)createLeftPanelViewController;
|
||||||
@ -131,8 +131,8 @@ typedef NS_ENUM(NSInteger, MFNumberOfDrawers) {
|
|||||||
|
|
||||||
#pragma mark - Button Presses
|
#pragma mark - Button Presses
|
||||||
|
|
||||||
- (IBAction)leftPanelButtonPressed:(id)sender;
|
- (IBAction)leftPanelButtonPressed:(nullable id)sender;
|
||||||
- (IBAction)backButtonPressed:(id)sender;
|
- (IBAction)backButtonPressed:(nullable id)sender;
|
||||||
- (IBAction)rightPanelButtonPressed:(id)sender;
|
- (IBAction)rightPanelButtonPressed:(nullable id)sender;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user