Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
dz_TZImagePickerController
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
shuijing
dz_TZImagePickerController
Commits
4563ebd9
Commit
4563ebd9
authored
Dec 07, 2016
by
banchichen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化裁剪状态下,拍照的逻辑
parent
e7829894
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m
...troller/TZImagePickerController/TZPhotoPickerController.m
+11
-9
No files found.
TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m
View file @
4563ebd9
...
...
@@ -454,7 +454,6 @@ static CGSize AssetGridThumbnailSize;
if
(
iOS8Later
)
{
_imagePickerVc
.
modalPresentationStyle
=
UIModalPresentationOverCurrentContext
;
}
self
.
imagePickerVc
.
allowsEditing
=
tzImagePickerVc
.
allowCrop
;
[
self
presentViewController
:
_imagePickerVc
animated
:
YES
completion
:
nil
];
}
else
{
NSLog
(
@"模拟器中无法打开照相机,请在真机中使用"
);
...
...
@@ -571,12 +570,7 @@ static CGSize AssetGridThumbnailSize;
if
([
type
isEqualToString
:
@"public.image"
])
{
TZImagePickerController
*
imagePickerVc
=
(
TZImagePickerController
*
)
self
.
navigationController
;
[
imagePickerVc
showProgressHUD
];
UIImage
*
image
;
if
(
imagePickerVc
.
allowCrop
)
{
image
=
[
info
objectForKey
:
UIImagePickerControllerEditedImage
];
}
else
{
image
=
[
info
objectForKey
:
UIImagePickerControllerOriginalImage
];
}
UIImage
*
image
=
[
info
objectForKey
:
UIImagePickerControllerOriginalImage
];
if
(
image
)
{
[[
TZImageManager
manager
]
savePhotoWithImage
:
image
completion
:
^
(
NSError
*
error
){
if
(
!
error
)
{
...
...
@@ -604,8 +598,16 @@ static CGSize AssetGridThumbnailSize;
}
if
(
tzImagePickerVc
.
maxImagesCount
<=
1
)
{
[
tzImagePickerVc
.
selectedModels
addObject
:
assetModel
];
[
self
doneButtonClick
];
return
;
if
(
tzImagePickerVc
.
allowCrop
)
{
TZPhotoPreviewController
*
photoPreviewVc
=
[[
TZPhotoPreviewController
alloc
]
init
];
photoPreviewVc
.
currentIndex
=
_models
.
count
-
1
;
photoPreviewVc
.
models
=
_models
;
[
self
pushPhotoPrevireViewController
:
photoPreviewVc
];
}
else
{
[
tzImagePickerVc
.
selectedModels
addObject
:
assetModel
];
[
self
doneButtonClick
];
}
return
;
}
if
(
tzImagePickerVc
.
selectedModels
.
count
<
tzImagePickerVc
.
maxImagesCount
)
{
...
...
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