Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 38242f0b1f | |||
| 2974ccc4d9 | |||
| 1bff59846f | |||
| 5974642e25 | |||
| 2aa49f6ad1 | |||
| efc65445a7 |
4
.gitattributes
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
*.framework filter=lfs diff=lfs merge=lfs -text
|
||||||
|
libavcodec.a filter=lfs diff=lfs merge=lfs -text
|
||||||
|
GoogleMapsBase filter=lfs diff=lfs merge=lfs -text
|
||||||
|
GoogleMapsCore filter=lfs diff=lfs merge=lfs -text
|
||||||
7
DemoImageEditor.h
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#import "HFImageEditorViewController.h"
|
||||||
|
|
||||||
|
@interface DemoImageEditor : HFImageEditorViewController
|
||||||
|
|
||||||
|
@property(nonatomic,strong) IBOutlet UIBarButtonItem *saveButton;
|
||||||
|
|
||||||
|
@end
|
||||||
63
DemoImageEditor.m
Executable file
@ -0,0 +1,63 @@
|
|||||||
|
#import "HFImageEditorViewController+Private.h"
|
||||||
|
#import "DemoImageEditor.h"
|
||||||
|
|
||||||
|
@interface DemoImageEditor ()
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation DemoImageEditor
|
||||||
|
|
||||||
|
@synthesize saveButton = _saveButton;
|
||||||
|
|
||||||
|
-(id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
||||||
|
{
|
||||||
|
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
||||||
|
if(self) {
|
||||||
|
self.cropRect = CGRectMake(0,0,320,320);
|
||||||
|
self.minimumScale = 0.2;
|
||||||
|
self.maximumScale = 10;
|
||||||
|
}
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
- (void)viewDidUnload
|
||||||
|
{
|
||||||
|
[super viewDidUnload];
|
||||||
|
self.saveButton = nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- (IBAction)setSquareAction:(id)sender
|
||||||
|
{
|
||||||
|
self.cropRect = CGRectMake((self.frameView.frame.size.width-320)/2.0f, (self.frameView.frame.size.height-320)/2.0f, 320, 320);
|
||||||
|
[self reset:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)setLandscapeAction:(id)sender
|
||||||
|
{
|
||||||
|
self.cropRect = CGRectMake((self.frameView.frame.size.width-320)/2.0f, (self.frameView.frame.size.height-240)/2.0f, 320, 240);
|
||||||
|
[self reset:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
- (IBAction)setLPortraitAction:(id)sender
|
||||||
|
{
|
||||||
|
self.cropRect = CGRectMake((self.frameView.frame.size.width-240)/2.0f, (self.frameView.frame.size.height-320)/2.0f, 240, 320);
|
||||||
|
[self reset:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark Hooks
|
||||||
|
- (void)startTransformHook
|
||||||
|
{
|
||||||
|
self.saveButton.tintColor = [UIColor colorWithRed:0 green:49/255.0f blue:98/255.0f alpha:1];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)endTransformHook
|
||||||
|
{
|
||||||
|
self.saveButton.tintColor = [UIColor colorWithRed:0 green:128/255.0f blue:1 alpha:1];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@end
|
||||||
66
DemoImageEditor.xib
Executable file
@ -0,0 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="4514" systemVersion="13A603" targetRuntime="iOS.CocoaTouch" variant="6xAndEarlier" propertyAccessControl="none">
|
||||||
|
<dependencies>
|
||||||
|
<deployment defaultVersion="1296" identifier="iOS"/>
|
||||||
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3746"/>
|
||||||
|
</dependencies>
|
||||||
|
<objects>
|
||||||
|
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="DemoImageEditor">
|
||||||
|
<connections>
|
||||||
|
<outlet property="frameView" destination="32" id="51"/>
|
||||||
|
<outlet property="saveButton" destination="31" id="59"/>
|
||||||
|
<outlet property="view" destination="1" id="3"/>
|
||||||
|
</connections>
|
||||||
|
</placeholder>
|
||||||
|
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||||
|
<view contentMode="scaleToFill" id="1">
|
||||||
|
<rect key="frame" x="0.0" y="20" width="320" height="460"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<subviews>
|
||||||
|
<view clipsSubviews="YES" contentMode="scaleToFill" id="32" userLabel="Frame" customClass="HFImageEditorFrameView">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="320" height="416"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<color key="backgroundColor" white="0.096031021899999999" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
</view>
|
||||||
|
<toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="30">
|
||||||
|
<rect key="frame" x="0.0" y="416" width="320" height="44"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
|
||||||
|
<items>
|
||||||
|
<barButtonItem title="Cancel" id="48">
|
||||||
|
<connections>
|
||||||
|
<action selector="cancelAction:" destination="-1" id="63"/>
|
||||||
|
</connections>
|
||||||
|
</barButtonItem>
|
||||||
|
<barButtonItem width="31" style="plain" systemItem="fixedSpace" id="60"/>
|
||||||
|
<barButtonItem title="S" width="25" id="52">
|
||||||
|
<connections>
|
||||||
|
<action selector="setSquareAction:" destination="-1" id="64"/>
|
||||||
|
</connections>
|
||||||
|
</barButtonItem>
|
||||||
|
<barButtonItem title="L" width="25" id="53">
|
||||||
|
<connections>
|
||||||
|
<action selector="setLandscapeAction:" destination="-1" id="65"/>
|
||||||
|
</connections>
|
||||||
|
</barButtonItem>
|
||||||
|
<barButtonItem title="P" width="25" id="54">
|
||||||
|
<connections>
|
||||||
|
<action selector="setLPortraitAction:" destination="-1" id="66"/>
|
||||||
|
</connections>
|
||||||
|
</barButtonItem>
|
||||||
|
<barButtonItem width="31" style="plain" systemItem="fixedSpace" id="61"/>
|
||||||
|
<barButtonItem title="Save" width="61" id="31">
|
||||||
|
<color key="tintColor" red="0.0" green="0.50196081400000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
||||||
|
<connections>
|
||||||
|
<action selector="doneAction:" destination="-1" id="62"/>
|
||||||
|
</connections>
|
||||||
|
</barButtonItem>
|
||||||
|
</items>
|
||||||
|
<color key="tintColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
</toolbar>
|
||||||
|
</subviews>
|
||||||
|
<color key="backgroundColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<gestureRecognizers/>
|
||||||
|
<simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
|
||||||
|
</view>
|
||||||
|
</objects>
|
||||||
|
</document>
|
||||||
@ -20,10 +20,9 @@
|
|||||||
6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
|
6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
|
||||||
6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
|
6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
|
||||||
6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
|
6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
|
||||||
681785911C69DCB50032DAAC /* PNImagePickerViewController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 681785901C69DCB50032DAAC /* PNImagePickerViewController.framework */; };
|
|
||||||
7D97D76088572AF45812187E /* Pods_PNImagePickerViewController_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4328521B225C017B57B0EA26 /* Pods_PNImagePickerViewController_Tests.framework */; };
|
|
||||||
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
|
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
|
||||||
D6C71C75B8F5800EC9990F14 /* Pods_PNImagePickerViewController_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 685260EDF68D7C851442C12E /* Pods_PNImagePickerViewController_Example.framework */; };
|
AE78532B104C86CFD7E59E56 /* libPods-PNImagePickerViewController_Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C6AEC746978DFB326EAAA7FF /* libPods-PNImagePickerViewController_Tests.a */; };
|
||||||
|
DC5F4864BF4E2B1C54F620F6 /* libPods-PNImagePickerViewController_Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C80B5FA595CB4977C47CBE3 /* libPods-PNImagePickerViewController_Example.a */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
/* Begin PBXContainerItemProxy section */
|
/* Begin PBXContainerItemProxy section */
|
||||||
@ -37,9 +36,9 @@
|
|||||||
/* End PBXContainerItemProxy section */
|
/* End PBXContainerItemProxy section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
12535CEF396FF4D6369EA5C0 /* Pods-PNImagePickerViewController_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
2A510C8BD6FA22FF4BF841CC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
|
2A510C8BD6FA22FF4BF841CC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
|
||||||
4328521B225C017B57B0EA26 /* Pods_PNImagePickerViewController_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PNImagePickerViewController_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
43986E6CA155C636B098FB5C /* Pods-PNImagePickerViewController_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Tests.debug.xcconfig"; path = "Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
5C80B5FA595CB4977C47CBE3 /* libPods-PNImagePickerViewController_Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PNImagePickerViewController_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
6003F58A195388D20070C39A /* PNImagePickerViewController_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PNImagePickerViewController_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
6003F58A195388D20070C39A /* PNImagePickerViewController_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PNImagePickerViewController_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||||
6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
||||||
@ -60,13 +59,13 @@
|
|||||||
6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
|
6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
|
||||||
606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
|
606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
|
||||||
681785901C69DCB50032DAAC /* PNImagePickerViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PNImagePickerViewController.framework; path = "Pods/../build/Debug-iphoneos/PNImagePickerViewController.framework"; sourceTree = "<group>"; };
|
681785901C69DCB50032DAAC /* PNImagePickerViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PNImagePickerViewController.framework; path = "Pods/../build/Debug-iphoneos/PNImagePickerViewController.framework"; sourceTree = "<group>"; };
|
||||||
685260EDF68D7C851442C12E /* Pods_PNImagePickerViewController_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PNImagePickerViewController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
86D18E23BB421419B8132D08 /* Pods-PNImagePickerViewController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
|
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
|
||||||
930DB7C275684056258BA5EF /* PNImagePickerViewController.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = PNImagePickerViewController.podspec; path = ../PNImagePickerViewController.podspec; sourceTree = "<group>"; };
|
930DB7C275684056258BA5EF /* PNImagePickerViewController.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = PNImagePickerViewController.podspec; path = ../PNImagePickerViewController.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
||||||
98D3978B62130F866F704B9C /* Pods-PNImagePickerViewController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
9DECFF91FBC10CAD6C7AEE1E /* Pods-PNImagePickerViewController_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
AD447568A76DA895F7B37A24 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
|
AD447568A76DA895F7B37A24 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
|
||||||
|
ADC9C57C00FD4B2D4EF4A32E /* Pods-PNImagePickerViewController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Example.release.xcconfig"; path = "Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
C6AEC746978DFB326EAAA7FF /* libPods-PNImagePickerViewController_Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PNImagePickerViewController_Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
|
CB8F44A02F3C2331783D2F8C /* Pods-PNImagePickerViewController_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Tests.release.xcconfig"; path = "Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
EBA5C1654F9AF7E4A9AFC1DA /* Pods-PNImagePickerViewController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PNImagePickerViewController_Example.debug.xcconfig"; path = "Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
@ -74,11 +73,10 @@
|
|||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
681785911C69DCB50032DAAC /* PNImagePickerViewController.framework in Frameworks */,
|
|
||||||
6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
|
6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
|
||||||
6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
|
6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
|
||||||
6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
|
6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
|
||||||
D6C71C75B8F5800EC9990F14 /* Pods_PNImagePickerViewController_Example.framework in Frameworks */,
|
DC5F4864BF4E2B1C54F620F6 /* libPods-PNImagePickerViewController_Example.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@ -89,7 +87,7 @@
|
|||||||
6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
|
6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
|
||||||
6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
|
6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
|
||||||
6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
|
6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
|
||||||
7D97D76088572AF45812187E /* Pods_PNImagePickerViewController_Tests.framework in Frameworks */,
|
AE78532B104C86CFD7E59E56 /* libPods-PNImagePickerViewController_Tests.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@ -104,7 +102,7 @@
|
|||||||
6003F5B5195388D20070C39A /* Tests */,
|
6003F5B5195388D20070C39A /* Tests */,
|
||||||
6003F58C195388D20070C39A /* Frameworks */,
|
6003F58C195388D20070C39A /* Frameworks */,
|
||||||
6003F58B195388D20070C39A /* Products */,
|
6003F58B195388D20070C39A /* Products */,
|
||||||
9BA892B7D07729CC69D18118 /* Pods */,
|
61B7F4C46763F303A5BF4642 /* Pods */,
|
||||||
);
|
);
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
@ -125,8 +123,8 @@
|
|||||||
6003F58F195388D20070C39A /* CoreGraphics.framework */,
|
6003F58F195388D20070C39A /* CoreGraphics.framework */,
|
||||||
6003F591195388D20070C39A /* UIKit.framework */,
|
6003F591195388D20070C39A /* UIKit.framework */,
|
||||||
6003F5AF195388D20070C39A /* XCTest.framework */,
|
6003F5AF195388D20070C39A /* XCTest.framework */,
|
||||||
685260EDF68D7C851442C12E /* Pods_PNImagePickerViewController_Example.framework */,
|
5C80B5FA595CB4977C47CBE3 /* libPods-PNImagePickerViewController_Example.a */,
|
||||||
4328521B225C017B57B0EA26 /* Pods_PNImagePickerViewController_Tests.framework */,
|
C6AEC746978DFB326EAAA7FF /* libPods-PNImagePickerViewController_Tests.a */,
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -186,15 +184,15 @@
|
|||||||
name = "Podspec Metadata";
|
name = "Podspec Metadata";
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
9BA892B7D07729CC69D18118 /* Pods */ = {
|
61B7F4C46763F303A5BF4642 /* Pods */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
86D18E23BB421419B8132D08 /* Pods-PNImagePickerViewController_Example.debug.xcconfig */,
|
EBA5C1654F9AF7E4A9AFC1DA /* Pods-PNImagePickerViewController_Example.debug.xcconfig */,
|
||||||
98D3978B62130F866F704B9C /* Pods-PNImagePickerViewController_Example.release.xcconfig */,
|
ADC9C57C00FD4B2D4EF4A32E /* Pods-PNImagePickerViewController_Example.release.xcconfig */,
|
||||||
9DECFF91FBC10CAD6C7AEE1E /* Pods-PNImagePickerViewController_Tests.debug.xcconfig */,
|
43986E6CA155C636B098FB5C /* Pods-PNImagePickerViewController_Tests.debug.xcconfig */,
|
||||||
12535CEF396FF4D6369EA5C0 /* Pods-PNImagePickerViewController_Tests.release.xcconfig */,
|
CB8F44A02F3C2331783D2F8C /* Pods-PNImagePickerViewController_Tests.release.xcconfig */,
|
||||||
);
|
);
|
||||||
name = Pods;
|
path = Pods;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
/* End PBXGroup section */
|
/* End PBXGroup section */
|
||||||
@ -204,12 +202,11 @@
|
|||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "PNImagePickerViewController_Example" */;
|
buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "PNImagePickerViewController_Example" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
F8D96CF8CF3D374B5AAE33C4 /* Check Pods Manifest.lock */,
|
2C6565F5C43756D0430E8CA7 /* [CP] Check Pods Manifest.lock */,
|
||||||
6003F586195388D20070C39A /* Sources */,
|
6003F586195388D20070C39A /* Sources */,
|
||||||
6003F587195388D20070C39A /* Frameworks */,
|
6003F587195388D20070C39A /* Frameworks */,
|
||||||
6003F588195388D20070C39A /* Resources */,
|
6003F588195388D20070C39A /* Resources */,
|
||||||
B94FCDE98F285449578D9F34 /* Embed Pods Frameworks */,
|
C56906A3A098A96D094B8E5B /* [CP] Copy Pods Resources */,
|
||||||
56476F9757949999164002B1 /* Copy Pods Resources */,
|
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
@ -224,12 +221,11 @@
|
|||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "PNImagePickerViewController_Tests" */;
|
buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "PNImagePickerViewController_Tests" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
2FD43162D7B4455C62B23FFC /* Check Pods Manifest.lock */,
|
3C97CC20A31B0FA9B8E46167 /* [CP] Check Pods Manifest.lock */,
|
||||||
6003F5AA195388D20070C39A /* Sources */,
|
6003F5AA195388D20070C39A /* Sources */,
|
||||||
6003F5AB195388D20070C39A /* Frameworks */,
|
6003F5AB195388D20070C39A /* Frameworks */,
|
||||||
6003F5AC195388D20070C39A /* Resources */,
|
6003F5AC195388D20070C39A /* Resources */,
|
||||||
6C7D9A9333266674130B4B6D /* Embed Pods Frameworks */,
|
1A8BC91A508BD0EFA14DD6F1 /* [CP] Copy Pods Resources */,
|
||||||
B6A2E7AB4CD0217BA75EC551 /* Copy Pods Resources */,
|
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
@ -251,6 +247,9 @@
|
|||||||
LastUpgradeCheck = 0720;
|
LastUpgradeCheck = 0720;
|
||||||
ORGANIZATIONNAME = "Giuseppe Nucifora";
|
ORGANIZATIONNAME = "Giuseppe Nucifora";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
|
6003F589195388D20070C39A = {
|
||||||
|
DevelopmentTeam = 825G85A28E;
|
||||||
|
};
|
||||||
6003F5AD195388D20070C39A = {
|
6003F5AD195388D20070C39A = {
|
||||||
TestTargetID = 6003F589195388D20070C39A;
|
TestTargetID = 6003F589195388D20070C39A;
|
||||||
};
|
};
|
||||||
@ -297,94 +296,92 @@
|
|||||||
/* End PBXResourcesBuildPhase section */
|
/* End PBXResourcesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXShellScriptBuildPhase section */
|
/* Begin PBXShellScriptBuildPhase section */
|
||||||
2FD43162D7B4455C62B23FFC /* Check Pods Manifest.lock */ = {
|
1A8BC91A508BD0EFA14DD6F1 /* [CP] Copy Pods Resources */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests-resources.sh",
|
||||||
|
"${PODS_ROOT}/CLImageEditor/CLImageEditor/CLImageEditor.bundle",
|
||||||
|
);
|
||||||
|
name = "[CP] Copy Pods Resources";
|
||||||
|
outputFileListPaths = (
|
||||||
);
|
);
|
||||||
name = "Check Pods Manifest.lock";
|
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/CLImageEditor.bundle",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests-resources.sh\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
56476F9757949999164002B1 /* Copy Pods Resources */ = {
|
2C6565F5C43756D0430E8CA7 /* [CP] Check Pods Manifest.lock */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||||
|
"${PODS_ROOT}/Manifest.lock",
|
||||||
|
);
|
||||||
|
name = "[CP] Check Pods Manifest.lock";
|
||||||
|
outputFileListPaths = (
|
||||||
);
|
);
|
||||||
name = "Copy Pods Resources";
|
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"$(DERIVED_FILE_DIR)/Pods-PNImagePickerViewController_Example-checkManifestLockResult.txt",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example-resources.sh\"\n";
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
6C7D9A9333266674130B4B6D /* Embed Pods Frameworks */ = {
|
3C97CC20A31B0FA9B8E46167 /* [CP] Check Pods Manifest.lock */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||||
|
"${PODS_ROOT}/Manifest.lock",
|
||||||
|
);
|
||||||
|
name = "[CP] Check Pods Manifest.lock";
|
||||||
|
outputFileListPaths = (
|
||||||
);
|
);
|
||||||
name = "Embed Pods Frameworks";
|
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"$(DERIVED_FILE_DIR)/Pods-PNImagePickerViewController_Tests-checkManifestLockResult.txt",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests-frameworks.sh\"\n";
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
B6A2E7AB4CD0217BA75EC551 /* Copy Pods Resources */ = {
|
C56906A3A098A96D094B8E5B /* [CP] Copy Pods Resources */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example-resources.sh",
|
||||||
|
"${PODS_ROOT}/CLImageEditor/CLImageEditor/CLImageEditor.bundle",
|
||||||
|
);
|
||||||
|
name = "[CP] Copy Pods Resources";
|
||||||
|
outputFileListPaths = (
|
||||||
);
|
);
|
||||||
name = "Copy Pods Resources";
|
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/CLImageEditor.bundle",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PNImagePickerViewController_Tests/Pods-PNImagePickerViewController_Tests-resources.sh\"\n";
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example-resources.sh\"\n";
|
||||||
showEnvVarsInLog = 0;
|
|
||||||
};
|
|
||||||
B94FCDE98F285449578D9F34 /* Embed Pods Frameworks */ = {
|
|
||||||
isa = PBXShellScriptBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
);
|
|
||||||
inputPaths = (
|
|
||||||
);
|
|
||||||
name = "Embed Pods Frameworks";
|
|
||||||
outputPaths = (
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
shellPath = /bin/sh;
|
|
||||||
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PNImagePickerViewController_Example/Pods-PNImagePickerViewController_Example-frameworks.sh\"\n";
|
|
||||||
showEnvVarsInLog = 0;
|
|
||||||
};
|
|
||||||
F8D96CF8CF3D374B5AAE33C4 /* Check Pods Manifest.lock */ = {
|
|
||||||
isa = PBXShellScriptBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
);
|
|
||||||
inputPaths = (
|
|
||||||
);
|
|
||||||
name = "Check Pods Manifest.lock";
|
|
||||||
outputPaths = (
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
shellPath = /bin/sh;
|
|
||||||
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
|
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
/* End PBXShellScriptBuildPhase section */
|
/* End PBXShellScriptBuildPhase section */
|
||||||
@ -513,10 +510,11 @@
|
|||||||
};
|
};
|
||||||
6003F5C0195388D20070C39A /* Debug */ = {
|
6003F5C0195388D20070C39A /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 86D18E23BB421419B8132D08 /* Pods-PNImagePickerViewController_Example.debug.xcconfig */;
|
baseConfigurationReference = EBA5C1654F9AF7E4A9AFC1DA /* Pods-PNImagePickerViewController_Example.debug.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||||
|
DEVELOPMENT_TEAM = 825G85A28E;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"$(PROJECT_DIR)/build/Debug-iphoneos",
|
"$(PROJECT_DIR)/build/Debug-iphoneos",
|
||||||
@ -533,10 +531,11 @@
|
|||||||
};
|
};
|
||||||
6003F5C1195388D20070C39A /* Release */ = {
|
6003F5C1195388D20070C39A /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 98D3978B62130F866F704B9C /* Pods-PNImagePickerViewController_Example.release.xcconfig */;
|
baseConfigurationReference = ADC9C57C00FD4B2D4EF4A32E /* Pods-PNImagePickerViewController_Example.release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||||
|
DEVELOPMENT_TEAM = 825G85A28E;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"$(PROJECT_DIR)/build/Debug-iphoneos",
|
"$(PROJECT_DIR)/build/Debug-iphoneos",
|
||||||
@ -553,7 +552,7 @@
|
|||||||
};
|
};
|
||||||
6003F5C3195388D20070C39A /* Debug */ = {
|
6003F5C3195388D20070C39A /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 9DECFF91FBC10CAD6C7AEE1E /* Pods-PNImagePickerViewController_Tests.debug.xcconfig */;
|
baseConfigurationReference = 43986E6CA155C636B098FB5C /* Pods-PNImagePickerViewController_Tests.debug.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
@ -577,7 +576,7 @@
|
|||||||
};
|
};
|
||||||
6003F5C4195388D20070C39A /* Release */ = {
|
6003F5C4195388D20070C39A /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 12535CEF396FF4D6369EA5C0 /* Pods-PNImagePickerViewController_Tests.release.xcconfig */;
|
baseConfigurationReference = CB8F44A02F3C2331783D2F8C /* Pods-PNImagePickerViewController_Tests.release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
|
|||||||
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>IDEDidComputeMac32BitWarning</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@ -43,5 +43,11 @@
|
|||||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
</array>
|
</array>
|
||||||
|
<key>NSCameraUsageDescription</key>
|
||||||
|
<string>L'app vorrebbe accedere alle foto</string>
|
||||||
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
|
<string>L'app vorrebbe accedere alle foto</string>
|
||||||
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
|
<string>L'app vorrebbe accedere al microfono</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
@ -71,6 +71,7 @@
|
|||||||
_imagePickerController = [[PNImagePickerViewController alloc] init];
|
_imagePickerController = [[PNImagePickerViewController alloc] init];
|
||||||
_imagePickerController.delegate = self;
|
_imagePickerController.delegate = self;
|
||||||
}
|
}
|
||||||
|
[_imagePickerController setEnableEditMode:YES];
|
||||||
[_imagePickerController showImagePickerInController:self animated:YES];
|
[_imagePickerController showImagePickerInController:self animated:YES];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
source 'https://github.com/CocoaPods/Specs.git'
|
source 'https://github.com/CocoaPods/Specs.git'
|
||||||
use_frameworks!
|
platform :ios, '9.0'
|
||||||
|
|
||||||
target 'PNImagePickerViewController_Example' do
|
target 'PNImagePickerViewController_Example' do
|
||||||
pod 'PNImagePickerViewController', :path => '../'
|
pod 'PNImagePickerViewController', :path => '../'
|
||||||
@ -11,6 +11,5 @@ target 'PNImagePickerViewController_Tests' do
|
|||||||
|
|
||||||
pod 'Specta'
|
pod 'Specta'
|
||||||
pod 'Expecta'
|
pod 'Expecta'
|
||||||
pod 'FBSnapshotTestCase'
|
|
||||||
pod 'Expecta+Snapshots'
|
pod 'Expecta+Snapshots'
|
||||||
end
|
end
|
||||||
|
|||||||
@ -1,40 +1,67 @@
|
|||||||
PODS:
|
PODS:
|
||||||
- DGActivityIndicatorView (2.0)
|
- CLImageEditor/AllTools (0.2.4):
|
||||||
- Expecta (1.0.5)
|
- CLImageEditor/Core
|
||||||
- Expecta+Snapshots (3.0.0):
|
- CLImageEditor/EmoticonTool
|
||||||
|
- CLImageEditor/ResizeTool
|
||||||
|
- CLImageEditor/SplashTool
|
||||||
|
- CLImageEditor/StickerTool
|
||||||
|
- CLImageEditor/TextTool
|
||||||
|
- CLImageEditor/Core (0.2.4)
|
||||||
|
- CLImageEditor/EmoticonTool (0.2.4):
|
||||||
|
- CLImageEditor/Core
|
||||||
|
- CLImageEditor/ResizeTool (0.2.4):
|
||||||
|
- CLImageEditor/Core
|
||||||
|
- CLImageEditor/SplashTool (0.2.4):
|
||||||
|
- CLImageEditor/Core
|
||||||
|
- CLImageEditor/StickerTool (0.2.4):
|
||||||
|
- CLImageEditor/Core
|
||||||
|
- CLImageEditor/TextTool (0.2.4):
|
||||||
|
- CLImageEditor/Core
|
||||||
|
- DGActivityIndicatorView (2.1.1)
|
||||||
|
- Expecta (1.0.6)
|
||||||
|
- "Expecta+Snapshots (3.1.1)":
|
||||||
- Expecta (~> 1.0)
|
- Expecta (~> 1.0)
|
||||||
- FBSnapshotTestCase/Core (~> 2.0)
|
- FBSnapshotTestCase/Core (~> 2.0)
|
||||||
- Specta (~> 1.0)
|
- Specta (~> 1.0)
|
||||||
- FBSnapshotTestCase (2.1.0):
|
- FBSnapshotTestCase/Core (2.1.4)
|
||||||
- FBSnapshotTestCase/SwiftSupport (= 2.1.0)
|
- PNImagePickerViewController (1.0.2):
|
||||||
- FBSnapshotTestCase/Core (2.1.0)
|
- CLImageEditor/AllTools
|
||||||
- FBSnapshotTestCase/SwiftSupport (2.1.0):
|
|
||||||
- FBSnapshotTestCase/Core
|
|
||||||
- PNImagePickerViewController (0.1.6):
|
|
||||||
- DGActivityIndicatorView
|
- DGActivityIndicatorView
|
||||||
- PureLayout
|
- PureLayout
|
||||||
- PureLayout (3.0.1)
|
- PureLayout (3.1.4)
|
||||||
- Specta (1.0.5)
|
- Specta (1.0.7)
|
||||||
|
|
||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
- Expecta
|
- Expecta
|
||||||
- Expecta+Snapshots
|
- "Expecta+Snapshots"
|
||||||
- FBSnapshotTestCase
|
|
||||||
- PNImagePickerViewController (from `../`)
|
- PNImagePickerViewController (from `../`)
|
||||||
- PureLayout
|
- PureLayout
|
||||||
- Specta
|
- Specta
|
||||||
|
|
||||||
|
SPEC REPOS:
|
||||||
|
https://github.com/cocoapods/specs.git:
|
||||||
|
- CLImageEditor
|
||||||
|
- DGActivityIndicatorView
|
||||||
|
- Expecta
|
||||||
|
- "Expecta+Snapshots"
|
||||||
|
- FBSnapshotTestCase
|
||||||
|
- PureLayout
|
||||||
|
- Specta
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
EXTERNAL SOURCES:
|
||||||
PNImagePickerViewController:
|
PNImagePickerViewController:
|
||||||
:path: ../
|
:path: "../"
|
||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
DGActivityIndicatorView: 52875b025a6ccf6a431a905285c12e2bb95eb559
|
CLImageEditor: dc3e5358f641368da3a76fc1c744a4c2ceb270ad
|
||||||
Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe
|
DGActivityIndicatorView: ff2c76073d79692f724863c8dd38685866a03cb6
|
||||||
Expecta+Snapshots: c343f410c7a6392f3e22e78f94c44b6c0749a516
|
Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5
|
||||||
FBSnapshotTestCase: 366ecd378511d7716c79991cd8067d1eed23578d
|
"Expecta+Snapshots": dcff217eef506dabd6dfdc7864ea2da321fafbb8
|
||||||
PNImagePickerViewController: 0848e21228883cb9ed88d1acda011343874159bf
|
FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a
|
||||||
PureLayout: f35f5384c9c4e4479df041dbe33ad7577b71ddfb
|
PNImagePickerViewController: 418255d2d3b65cc52d9a47f891a831e8c9d11d6f
|
||||||
Specta: ac94d110b865115fe60ff2c6d7281053c6f8e8a2
|
PureLayout: f08c01b8dec00bb14a1fefa3de4c7d9c265df85e
|
||||||
|
Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66
|
||||||
|
|
||||||
COCOAPODS: 0.39.0
|
PODFILE CHECKSUM: d21e7aa1109583b38a752038983d180af70f28d4
|
||||||
|
|
||||||
|
COCOAPODS: 1.6.0
|
||||||
|
|||||||
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/brightness.png
generated
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/brightness@2x.png
generated
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/contrast.png
generated
Normal file
|
After Width: | Height: | Size: 956 B |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/contrast@2x.png
generated
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/saturation.png
generated
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/saturation@2x.png
generated
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/brightness.png
generated
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/brightness@2x.png
generated
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/contrast.png
generated
Normal file
|
After Width: | Height: | Size: 956 B |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/contrast@2x.png
generated
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/saturation.png
generated
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/saturation@2x.png
generated
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/band.png
generated
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_band.png
generated
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_circle.png
generated
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_normal.png
generated
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/circle.png
generated
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/band.png
generated
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_band.png
generated
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_circle.png
generated
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_normal.png
generated
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/circle.png
generated
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/black/btn_rotate.png
generated
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/white/btn_rotate.png
generated
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/black/btn_eraser.png
generated
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/white/btn_eraser.png
generated
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLBloomEffect.png
generated
Normal file
|
After Width: | Height: | Size: 126 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLEffectBase.png
generated
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLGloomEffect.png
generated
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLHighlightShadowEffect.png
generated
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLHueEffect.png
generated
Normal file
|
After Width: | Height: | Size: 140 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLPixellateEffect.png
generated
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLPosterizeEffect.png
generated
Normal file
|
After Width: | Height: | Size: 115 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLSpotEffect.png
generated
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
3
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Copyright
generated
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
The images in ./Emoticons are copyrighted by iMokhles (http:/imokhles.com/).
|
||||||
|
|
||||||
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/001.png
generated
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/002.png
generated
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/003.png
generated
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/004.png
generated
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/005.png
generated
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/006.png
generated
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/007.png
generated
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/008.png
generated
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/009.png
generated
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/010.png
generated
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/011.png
generated
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/012.png
generated
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/013.png
generated
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/014.png
generated
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/015.png
generated
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/016.png
generated
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/017.png
generated
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/black/btn_delete.png
generated
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/white/btn_delete.png
generated
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLFilterTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLFilterTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_chain_off.png
generated
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_chain_on.png
generated
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_height.png
generated
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_width.png
generated
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_chain_off.png
generated
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_chain_on.png
generated
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_height.png
generated
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_width.png
generated
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_flip1.png
generated
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_flip2.png
generated
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_rotate.png
generated
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_flip1.png
generated
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_flip2.png
generated
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_rotate.png
generated
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/black/btn_eraser.png
generated
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/black/icon.png
generated
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/white/btn_eraser.png
generated
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/white/icon.png
generated
Normal file
|
After Width: | Height: | Size: 12 KiB |