Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
flutter_plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林生雨
flutter_plugin
Commits
9a004833
Commit
9a004833
authored
Nov 05, 2019
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Commot
parent
abe2da57
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
19 deletions
+27
-19
workspace.xml
.idea/workspace.xml
+4
-5
GengmeiFlutterPlugin.m
ios/Classes/GengmeiFlutterPlugin.m
+23
-14
No files found.
.idea/workspace.xml
View file @
9a004833
...
...
@@ -6,8 +6,7 @@
</component>
<component
name=
"ChangeListManager"
>
<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$/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"
/>
<change
beforePath=
"$PROJECT_DIR$/ios/Classes/GengmeiFlutterPlugin.m"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/ios/Classes/GengmeiFlutterPlugin.m"
afterDir=
"false"
/>
</list>
<ignored
path=
"$PROJECT_DIR$/.dart_tool/"
/>
<ignored
path=
"$PROJECT_DIR$/.idea/"
/>
...
...
@@ -203,10 +202,10 @@
</option>
</component>
<component
name=
"ProjectFrameBounds"
extendedState=
"6"
>
<option
name=
"x"
value=
"
131
"
/>
<option
name=
"y"
value=
"1
80
"
/>
<option
name=
"x"
value=
"
36
"
/>
<option
name=
"y"
value=
"1
34
"
/>
<option
name=
"width"
value=
"1440"
/>
<option
name=
"height"
value=
"81
1
"
/>
<option
name=
"height"
value=
"81
2
"
/>
</component>
<component
name=
"ProjectLevelVcsManager"
settingsEditedManually=
"true"
/>
<component
name=
"ProjectView"
>
...
...
ios/Classes/GengmeiFlutterPlugin.m
View file @
9a004833
...
...
@@ -71,20 +71,8 @@ NSString *cacheDirectory;
AVAuthorizationStatus
authStatus
=
[
AVCaptureDevice
authorizationStatusForMediaType
:
mediaType
];
//读取设备授权状态
if
(
author
==
AVAuthorizationStatusRestricted
||
authStatus
==
AVAuthorizationStatusDenied
)
{
NSLog
(
@"没给权限!!!"
);
[
PHPhotoLibrary
requestAuthorization
:
^
(
PHAuthorizationStatus
status
)
{
if
(
status
==
PHAuthorizationStatusAuthorized
)
{
dispatch_async
(
dispatch_get_main_queue
(),
^
{
// 用户点击 "OK"
long
temp
=
self
.
resultKey
;
[
self
scanPhone
:
temp
];
});
}
else
{
dispatch_async
(
dispatch_get_main_queue
(),
^
{
// 用户点击 不允许访问
NSLog
(
@"被拒绝 TODO!!"
);
});
}
}];
NSString
*
errorStr
=
@"应用相机权限受限,请在iPhone的“设置-隐私-相机”选项中,允许好享玩访问你的相机。"
;
[
self
showToast
:
errorStr
inView
:
viewController
.
view
];
}
else
if
(
author
==
AVAuthorizationStatusNotDetermined
){
[
PHPhotoLibrary
requestAuthorization
:
^
(
PHAuthorizationStatus
status
)
{
if
(
status
==
PHAuthorizationStatusAuthorized
)
{
...
...
@@ -112,6 +100,7 @@ NSString *cacheDirectory;
if
(
authStatus
==
AVAuthorizationStatusRestricted
||
authStatus
==
AVAuthorizationStatusDenied
){
NSString
*
errorStr
=
@"应用相机权限受限,请在iPhone的“设置-隐私-相机”选项中,允许好享玩访问你的相机。"
;
NSLog
(
@"相机不可用"
);
[
self
showToast
:
errorStr
inView
:
viewController
.
view
];
}
else
if
(
authStatus
==
AVAuthorizationStatusNotDetermined
){
[
AVCaptureDevice
requestAccessForMediaType
:
AVMediaTypeVideo
completionHandler
:
^
(
BOOL
granted
)
{
if
(
granted
){
...
...
@@ -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
{
NSUserDefaults
*
userDefaults
=
[
NSUserDefaults
standardUserDefaults
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment