Explorar el Código

IPU框架标准版:新增closeSlidingMenu插件

liufl5 %!s(int64=4) %!d(string=hace) años
padre
commit
a89dd117da

+ 1 - 0
IPUMobileFunc/IPUMobileFunc/IPUMobileUIPlugin.h

@ -94,6 +94,7 @@
94 94
- (void)closeWindow:(NSArray *)param;
95 95
96 96
- (void)openSlidingMenu:(NSArray *)param;
97
- (void)closeSlidingMenu:(NSArray *)param;
97 98
98 99
- (void)getPage:(NSArray *)param;
99 100

+ 9 - 0
IPUMobileFunc/IPUMobileFunc/IPUMobileUIPlugin.m

@ -739,6 +739,15 @@
739 739
    [alert show];
740 740
}
741 741
742
- (void)closeSlidingMenu:(NSArray *)param{
743
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@""
744
                                                    message:@"iOS版暂不支持此功能"
745
                                                   delegate:nil
746
                                          cancelButtonTitle:@"OK"
747
                                          otherButtonTitles:nil, nil];
748
    [alert show];
749
}
750
742 751
- (void)getPage:(NSArray *)param {
743 752
    NSString *pageAction = param[0];
744 753
    NSObject *dataParam = param[1];