remove duplicate function
Move back to delegate. Throw error when using exact class, don't throw error when using protocol. remove unused search path
This commit is contained in:
parent
da9b0caf7e
commit
88c8531bbd
@ -18,7 +18,6 @@ extern CGFloat const CloseButtonWidth;
|
|||||||
|
|
||||||
@interface MFCustomButton : UIButton <MFButtonProtocol>
|
@interface MFCustomButton : UIButton <MFButtonProtocol>
|
||||||
|
|
||||||
@property (nullable, nonatomic, strong) id dataPassed;
|
|
||||||
@property (nullable, nonatomic, strong) NSDictionary *actionMap;
|
@property (nullable, nonatomic, strong) NSDictionary *actionMap;
|
||||||
@property (nullable, nonatomic, weak) id <ButtonDelegateProtocol> buttonDelegate;
|
@property (nullable, nonatomic, weak) id <ButtonDelegateProtocol> buttonDelegate;
|
||||||
@property (nullable, nonatomic, strong) NSLayoutConstraint *heightConstraint;
|
@property (nullable, nonatomic, strong) NSLayoutConstraint *heightConstraint;
|
||||||
|
|||||||
@ -688,7 +688,7 @@
|
|||||||
if (!error && (loadObject.requestParameters.openSupportPanel || [loadObject.systemParametersJSON boolForKey:KeyOpenSupport])) {
|
if (!error && (loadObject.requestParameters.openSupportPanel || [loadObject.systemParametersJSON boolForKey:KeyOpenSupport])) {
|
||||||
[[MVMCoreUISession sharedGlobal].splitViewController showRightPanelAnimated:YES];
|
[[MVMCoreUISession sharedGlobal].splitViewController showRightPanelAnimated:YES];
|
||||||
}
|
}
|
||||||
[[MVMCoreUILoggingHandler sharedLoggingHandler] defaultTrackLoadFinishedForController:self loadObject:loadObject];
|
[MVMCoreUILoggingHandler logWithDelegateLoadFinished:loadObject loadedViewController:loadedViewController error:error];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)loadCancelled:(nullable MVMCoreLoadObject *)loadObject {
|
- (void)loadCancelled:(nullable MVMCoreLoadObject *)loadObject {
|
||||||
|
|||||||
@ -21,9 +21,6 @@ NS_ASSUME_NONNULL_BEGIN
|
|||||||
- (void)defaultLogActionForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
|
- (void)defaultLogActionForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
|
||||||
- (nullable NSDictionary *)defaultGetActionTrackDataDictionaryForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
|
- (nullable NSDictionary *)defaultGetActionTrackDataDictionaryForController:(nonnull MFViewController *)controller actionInformation:(nullable NSDictionary *)actionInformation additionalData:(nullable NSDictionary *)additionalData;
|
||||||
|
|
||||||
// Load Logging
|
|
||||||
- (void)defaultTrackLoadFinishedForController:(nonnull MFViewController *)controller loadObject:(nullable MVMCoreLoadObject *)loadObject;
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_END
|
NS_ASSUME_NONNULL_END
|
||||||
|
|||||||
@ -20,7 +20,4 @@
|
|||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)defaultTrackLoadFinishedForController:(nonnull MFViewController *)controller loadObject:(nullable MVMCoreLoadObject *)loadObject {
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user