Commit 9a004833 authored by 林生雨's avatar 林生雨

Commot

parent abe2da57
...@@ -6,8 +6,7 @@ ...@@ -6,8 +6,7 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba" name="Default Changelist" comment=""> <list default="true" id="5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/ios/Classes/GengmeiFlutterPlugin.m" beforeDir="false" afterPath="$PROJECT_DIR$/ios/Classes/GengmeiFlutterPlugin.m" afterDir="false" />
<change beforePath="$PROJECT_DIR$/example/ios/.symlinks/plugins/gengmei_flutter_plugin/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/example/ios/.symlinks/plugins/gengmei_flutter_plugin/.idea/workspace.xml" afterDir="false" />
</list> </list>
<ignored path="$PROJECT_DIR$/.dart_tool/" /> <ignored path="$PROJECT_DIR$/.dart_tool/" />
<ignored path="$PROJECT_DIR$/.idea/" /> <ignored path="$PROJECT_DIR$/.idea/" />
...@@ -203,10 +202,10 @@ ...@@ -203,10 +202,10 @@
</option> </option>
</component> </component>
<component name="ProjectFrameBounds" extendedState="6"> <component name="ProjectFrameBounds" extendedState="6">
<option name="x" value="131" /> <option name="x" value="36" />
<option name="y" value="180" /> <option name="y" value="134" />
<option name="width" value="1440" /> <option name="width" value="1440" />
<option name="height" value="811" /> <option name="height" value="812" />
</component> </component>
<component name="ProjectLevelVcsManager" settingsEditedManually="true" /> <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="ProjectView"> <component name="ProjectView">
......
...@@ -71,20 +71,8 @@ NSString *cacheDirectory; ...@@ -71,20 +71,8 @@ NSString *cacheDirectory;
AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:mediaType]; //读取设备授权状态 AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:mediaType]; //读取设备授权状态
if(author == AVAuthorizationStatusRestricted || authStatus == AVAuthorizationStatusDenied) { if(author == AVAuthorizationStatusRestricted || authStatus == AVAuthorizationStatusDenied) {
NSLog(@"没给权限!!!"); NSLog(@"没给权限!!!");
[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) { NSString *errorStr = @"应用相机权限受限,请在iPhone的“设置-隐私-相机”选项中,允许好享玩访问你的相机。";
if(status == PHAuthorizationStatusAuthorized) { [self showToast:errorStr inView:viewController.view];
dispatch_async(dispatch_get_main_queue(), ^{
// 用户点击 "OK"
long temp=self.resultKey;
[self scanPhone:temp];
});
} else {
dispatch_async(dispatch_get_main_queue(), ^{
// 用户点击 不允许访问
NSLog(@"被拒绝 TODO!!");
});
}
}];
}else if(author == AVAuthorizationStatusNotDetermined){ }else if(author == AVAuthorizationStatusNotDetermined){
[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) { [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
if(status == PHAuthorizationStatusAuthorized) { if(status == PHAuthorizationStatusAuthorized) {
...@@ -112,6 +100,7 @@ NSString *cacheDirectory; ...@@ -112,6 +100,7 @@ NSString *cacheDirectory;
if(authStatus == AVAuthorizationStatusRestricted || authStatus == AVAuthorizationStatusDenied){ if(authStatus == AVAuthorizationStatusRestricted || authStatus == AVAuthorizationStatusDenied){
NSString *errorStr = @"应用相机权限受限,请在iPhone的“设置-隐私-相机”选项中,允许好享玩访问你的相机。"; NSString *errorStr = @"应用相机权限受限,请在iPhone的“设置-隐私-相机”选项中,允许好享玩访问你的相机。";
NSLog(@"相机不可用"); NSLog(@"相机不可用");
[self showToast:errorStr inView:viewController.view];
}else if(authStatus == AVAuthorizationStatusNotDetermined){ }else if(authStatus == AVAuthorizationStatusNotDetermined){
[AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) { [AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {
if(granted){ if(granted){
...@@ -464,6 +453,26 @@ NSString *cacheDirectory; ...@@ -464,6 +453,26 @@ NSString *cacheDirectory;
} }
- (void)showToast:(NSString *)text inView:(UIView *)superView {
if (!superView) {
return;
}
CGSize labelSize = [text sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20.f]}];
UILabel *label = [[UILabel alloc] init];
label.font = [UIFont systemFontOfSize:18.f];
label.text = text;
label.textAlignment = NSTextAlignmentCenter;
label.layer.cornerRadius = labelSize.height/4;
label.layer.masksToBounds = YES;
label.backgroundColor = [UIColor colorWithRed:38/255.f green:187/255.f blue:251/255.f alpha:1.f];
label.textColor = [UIColor whiteColor];
label.frame = CGRectMake((superView.bounds.size.width - labelSize.width)/2, 0, labelSize.width, labelSize.height);
[superView addSubview:label];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[label removeFromSuperview];
});
}
- (void)clearAllUserDefaultsData { - (void)clearAllUserDefaultsData {
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment