浏览代码

@liuql6 @解决编译问题

liuql6 3 年之前
父节点
当前提交
d71c0bb5f7

二进制
IPUMobileFunc/IPUMobileFunc.xcodeproj/project.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate


+ 2 - 2
IPUMobileFunc/IPUMobileFunc.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>IPUMobileFunc.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>1</integer>
15
			<integer>0</integer>
16 16
		</dict>
17 17
		<key>IPUMobileFuncBundle.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>4</integer>
20
			<integer>1</integer>
21 21
		</dict>
22 22
		<key>IPUMobileFuncResource.xcscheme</key>
23 23
		<dict>

+ 4 - 4
IPUMobileFunc/IPUMobileFunc/IPUMobileUIPlugin.m

@ -819,12 +819,12 @@
819 819
}
820 820
821 821
- (void)getSign:(NSArray *)params {
822
    IPUSignViewController *vc = [[UIStoryboard storyboardWithName:"IPUSignStoryboard" bundle:nil] instantiateInitialViewController];
823
    vc.modalPresentationStyle = UIModalPresentationCustom
824
    vc.saveToPhotos = false;
822
    IPUSignViewController *vc = [[UIStoryboard storyboardWithName:@"IPUSignStoryboard" bundle:nil] instantiateInitialViewController];
823
    vc.modalPresentationStyle = UIModalPresentationCustom;
824
    vc.saveToPhotos = YES;
825 825
    vc.completion = ^(NSString * _Nonnull base64) {
826 826
        [self callback: base64];
827
    }
827
    };
828 828
    UIViewController *current = [self getViewController];
829 829
    [current presentViewController:vc animated:true completion:nil];
830 830
}