Skip to content

Commit f7c0010

Browse files
committed
initial commit
1 parent 9fad828 commit f7c0010

23 files changed

+375
-36
lines changed

Assets/1.png

152 KB
Loading

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
## Requirements
3+
- Swift 4.2
4+
- OSX 10.13+
5+
- Xcode 9.x
6+
![1](Assets/1.png)
7+
8+
Mac上解压Assets.car文件的小工具
9+
10+
iOS开发中,如果使用了Images.xcassets管理图片,打包的时候会生成一个Assets.car文件,所有的图片都在这里面。本工具可以直接解压该文件。

cartool.xcodeproj/project.pbxproj

+25-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
047CF43321E46F710004CD73 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 047CF43221E46F710004CD73 /* ViewController.swift */; };
1212
047CF43521E46F720004CD73 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 047CF43421E46F720004CD73 /* Assets.xcassets */; };
1313
047CF43821E46F720004CD73 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 047CF43621E46F720004CD73 /* Main.storyboard */; };
14+
047CF44121E472270004CD73 /* CustomWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 047CF44021E472270004CD73 /* CustomWindow.swift */; };
15+
047CF44321E4722F0004CD73 /* Shell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 047CF44221E4722F0004CD73 /* Shell.swift */; };
16+
047CF44521E4731B0004CD73 /* cartool in Resources */ = {isa = PBXBuildFile; fileRef = 047CF44421E4731B0004CD73 /* cartool */; };
17+
047CF44721E476060004CD73 /* CustomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 047CF44621E476060004CD73 /* CustomView.swift */; };
1418
/* End PBXBuildFile section */
1519

1620
/* Begin PBXFileReference section */
@@ -20,7 +24,10 @@
2024
047CF43421E46F720004CD73 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
2125
047CF43721E46F720004CD73 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
2226
047CF43921E46F720004CD73 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
23-
047CF43A21E46F720004CD73 /* cartool.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = cartool.entitlements; sourceTree = "<group>"; };
27+
047CF44021E472270004CD73 /* CustomWindow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomWindow.swift; sourceTree = "<group>"; };
28+
047CF44221E4722F0004CD73 /* Shell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Shell.swift; sourceTree = "<group>"; };
29+
047CF44421E4731B0004CD73 /* cartool */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = cartool; sourceTree = "<group>"; };
30+
047CF44621E476060004CD73 /* CustomView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomView.swift; sourceTree = "<group>"; };
2431
/* End PBXFileReference section */
2532

2633
/* Begin PBXFrameworksBuildPhase section */
@@ -53,12 +60,15 @@
5360
047CF42F21E46F710004CD73 /* cartool */ = {
5461
isa = PBXGroup;
5562
children = (
63+
047CF44421E4731B0004CD73 /* cartool */,
5664
047CF43021E46F710004CD73 /* AppDelegate.swift */,
5765
047CF43221E46F710004CD73 /* ViewController.swift */,
66+
047CF44221E4722F0004CD73 /* Shell.swift */,
67+
047CF44021E472270004CD73 /* CustomWindow.swift */,
68+
047CF44621E476060004CD73 /* CustomView.swift */,
5869
047CF43421E46F720004CD73 /* Assets.xcassets */,
5970
047CF43621E46F720004CD73 /* Main.storyboard */,
6071
047CF43921E46F720004CD73 /* Info.plist */,
61-
047CF43A21E46F720004CD73 /* cartool.entitlements */,
6272
);
6373
path = cartool;
6474
sourceTree = "<group>";
@@ -95,6 +105,11 @@
95105
TargetAttributes = {
96106
047CF42C21E46F710004CD73 = {
97107
CreatedOnToolsVersion = 10.1;
108+
SystemCapabilities = {
109+
com.apple.Sandbox = {
110+
enabled = 0;
111+
};
112+
};
98113
};
99114
};
100115
};
@@ -121,6 +136,7 @@
121136
isa = PBXResourcesBuildPhase;
122137
buildActionMask = 2147483647;
123138
files = (
139+
047CF44521E4731B0004CD73 /* cartool in Resources */,
124140
047CF43521E46F720004CD73 /* Assets.xcassets in Resources */,
125141
047CF43821E46F720004CD73 /* Main.storyboard in Resources */,
126142
);
@@ -133,8 +149,11 @@
133149
isa = PBXSourcesBuildPhase;
134150
buildActionMask = 2147483647;
135151
files = (
152+
047CF44721E476060004CD73 /* CustomView.swift in Sources */,
136153
047CF43321E46F710004CD73 /* ViewController.swift in Sources */,
137154
047CF43121E46F710004CD73 /* AppDelegate.swift in Sources */,
155+
047CF44321E4722F0004CD73 /* Shell.swift in Sources */,
156+
047CF44121E472270004CD73 /* CustomWindow.swift in Sources */,
138157
);
139158
runOnlyForDeploymentPostprocessing = 0;
140159
};
@@ -203,7 +222,7 @@
203222
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
204223
GCC_WARN_UNUSED_FUNCTION = YES;
205224
GCC_WARN_UNUSED_VARIABLE = YES;
206-
MACOSX_DEPLOYMENT_TARGET = 10.14;
225+
MACOSX_DEPLOYMENT_TARGET = 10.13;
207226
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
208227
MTL_FAST_MATH = YES;
209228
ONLY_ACTIVE_ARCH = YES;
@@ -258,7 +277,7 @@
258277
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
259278
GCC_WARN_UNUSED_FUNCTION = YES;
260279
GCC_WARN_UNUSED_VARIABLE = YES;
261-
MACOSX_DEPLOYMENT_TARGET = 10.14;
280+
MACOSX_DEPLOYMENT_TARGET = 10.13;
262281
MTL_ENABLE_DEBUG_INFO = NO;
263282
MTL_FAST_MATH = YES;
264283
SDKROOT = macosx;
@@ -271,14 +290,14 @@
271290
isa = XCBuildConfiguration;
272291
buildSettings = {
273292
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
274-
CODE_SIGN_ENTITLEMENTS = cartool/cartool.entitlements;
275293
CODE_SIGN_STYLE = Automatic;
276294
COMBINE_HIDPI_IMAGES = YES;
277295
INFOPLIST_FILE = cartool/Info.plist;
278296
LD_RUNPATH_SEARCH_PATHS = (
279297
"$(inherited)",
280298
"@executable_path/../Frameworks",
281299
);
300+
MACOSX_DEPLOYMENT_TARGET = 10.13;
282301
PRODUCT_BUNDLE_IDENTIFIER = com.cartool;
283302
PRODUCT_NAME = "$(TARGET_NAME)";
284303
SWIFT_VERSION = 4.2;
@@ -289,14 +308,14 @@
289308
isa = XCBuildConfiguration;
290309
buildSettings = {
291310
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
292-
CODE_SIGN_ENTITLEMENTS = cartool/cartool.entitlements;
293311
CODE_SIGN_STYLE = Automatic;
294312
COMBINE_HIDPI_IMAGES = YES;
295313
INFOPLIST_FILE = cartool/Info.plist;
296314
LD_RUNPATH_SEARCH_PATHS = (
297315
"$(inherited)",
298316
"@executable_path/../Frameworks",
299317
);
318+
MACOSX_DEPLOYMENT_TARGET = 10.13;
300319
PRODUCT_BUNDLE_IDENTIFIER = com.cartool;
301320
PRODUCT_NAME = "$(TARGET_NAME)";
302321
SWIFT_VERSION = 4.2;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
type = "1"
4+
version = "2.0">
5+
</Bucket>

cartool/AppDelegate.swift

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ class AppDelegate: NSObject, NSApplicationDelegate {
2020
func applicationWillTerminate(_ aNotification: Notification) {
2121
// Insert code here to tear down your application
2222
}
23+
24+
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
25+
return true
26+
}
2327

2428

2529
}

cartool/Assets.xcassets/AppIcon.appiconset/Contents.json

+20-10
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,63 @@
11
{
22
"images" : [
33
{
4-
"idiom" : "mac",
54
"size" : "16x16",
5+
"idiom" : "mac",
6+
"filename" : "uncompress256-9.png",
67
"scale" : "1x"
78
},
89
{
9-
"idiom" : "mac",
1010
"size" : "16x16",
11+
"idiom" : "mac",
12+
"filename" : "uncompress256-8.png",
1113
"scale" : "2x"
1214
},
1315
{
14-
"idiom" : "mac",
1516
"size" : "32x32",
17+
"idiom" : "mac",
18+
"filename" : "uncompress256-7.png",
1619
"scale" : "1x"
1720
},
1821
{
19-
"idiom" : "mac",
2022
"size" : "32x32",
23+
"idiom" : "mac",
24+
"filename" : "uncompress256.png",
2125
"scale" : "2x"
2226
},
2327
{
24-
"idiom" : "mac",
2528
"size" : "128x128",
29+
"idiom" : "mac",
30+
"filename" : "uncompress256-6.png",
2631
"scale" : "1x"
2732
},
2833
{
29-
"idiom" : "mac",
3034
"size" : "128x128",
35+
"idiom" : "mac",
36+
"filename" : "uncompress256-2.png",
3137
"scale" : "2x"
3238
},
3339
{
34-
"idiom" : "mac",
3540
"size" : "256x256",
41+
"idiom" : "mac",
42+
"filename" : "uncompress256-3.png",
3643
"scale" : "1x"
3744
},
3845
{
39-
"idiom" : "mac",
4046
"size" : "256x256",
47+
"idiom" : "mac",
48+
"filename" : "uncompress256-1.png",
4149
"scale" : "2x"
4250
},
4351
{
44-
"idiom" : "mac",
4552
"size" : "512x512",
53+
"idiom" : "mac",
54+
"filename" : "uncompress256-4.png",
4655
"scale" : "1x"
4756
},
4857
{
49-
"idiom" : "mac",
5058
"size" : "512x512",
59+
"idiom" : "mac",
60+
"filename" : "uncompress256-5.png",
5161
"scale" : "2x"
5262
}
5363
],
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

cartool/Base.lproj/Main.storyboard

+61-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="11134" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="14460.31" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
33
<dependencies>
4-
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11134"/>
4+
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14460.31"/>
5+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
56
</dependencies>
67
<scenes>
78
<!--Application-->
@@ -673,7 +674,7 @@
673674
<outlet property="delegate" destination="Voe-Tx-rLC" id="PrD-fu-P6m"/>
674675
</connections>
675676
</application>
676-
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModuleProvider="target"/>
677+
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModule="cartool" customModuleProvider="target"/>
677678
<customObject id="YLy-65-1bz" customClass="NSFontManager"/>
678679
<customObject id="Ady-hI-5gd" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
679680
</objects>
@@ -682,9 +683,9 @@
682683
<!--Window Controller-->
683684
<scene sceneID="R2V-B0-nI4">
684685
<objects>
685-
<windowController id="B8D-0N-5wS" sceneMemberID="viewController">
686-
<window key="window" title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="IQv-IB-iLA">
687-
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
686+
<windowController id="B8D-0N-5wS" customClass="CustomWindow" customModule="cartool" customModuleProvider="target" sceneMemberID="viewController">
687+
<window key="window" title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" titlebarAppearsTransparent="YES" titleVisibility="hidden" id="IQv-IB-iLA">
688+
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
688689
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
689690
<rect key="contentRect" x="196" y="240" width="480" height="270"/>
690691
<rect key="screenRect" x="0.0" y="0.0" width="1680" height="1027"/>
@@ -703,11 +704,63 @@
703704
<!--View Controller-->
704705
<scene sceneID="hIz-AP-VOD">
705706
<objects>
706-
<viewController id="XfG-lQ-9wD" customClass="ViewController" customModuleProvider="target" sceneMemberID="viewController">
707+
<viewController id="XfG-lQ-9wD" customClass="ViewController" customModule="cartool" customModuleProvider="target" sceneMemberID="viewController">
707708
<view key="view" wantsLayer="YES" id="m2S-Jp-Qdl">
708709
<rect key="frame" x="0.0" y="0.0" width="480" height="270"/>
709710
<autoresizingMask key="autoresizingMask"/>
711+
<subviews>
712+
<customView translatesAutoresizingMaskIntoConstraints="NO" id="WJp-1f-NCl" customClass="CustomView" customModule="cartool" customModuleProvider="target">
713+
<rect key="frame" x="0.0" y="80" width="480" height="190"/>
714+
<subviews>
715+
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="96Z-Oy-Ar9">
716+
<rect key="frame" x="149" y="86" width="183" height="19"/>
717+
<textFieldCell key="cell" lineBreakMode="clipping" title="将.car的文件拖动灰色区域" id="qEE-YH-jKq">
718+
<font key="font" metaFont="system" size="15"/>
719+
<color key="textColor" red="1" green="0.25098039220000001" blue="0.1960784314" alpha="1" colorSpace="calibratedRGB"/>
720+
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
721+
</textFieldCell>
722+
</textField>
723+
</subviews>
724+
<constraints>
725+
<constraint firstItem="96Z-Oy-Ar9" firstAttribute="centerX" secondItem="WJp-1f-NCl" secondAttribute="centerX" id="AnN-1T-Ibd"/>
726+
<constraint firstItem="96Z-Oy-Ar9" firstAttribute="centerY" secondItem="WJp-1f-NCl" secondAttribute="centerY" id="lKB-A4-8rx"/>
727+
</constraints>
728+
</customView>
729+
<customView translatesAutoresizingMaskIntoConstraints="NO" id="C59-ck-nGN">
730+
<rect key="frame" x="0.0" y="0.0" width="480" height="80"/>
731+
<subviews>
732+
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nfE-6r-yAK">
733+
<rect key="frame" x="190" y="30" width="100" height="19"/>
734+
<buttonCell key="cell" type="roundRect" title="生成到当前目录" bezelStyle="roundedRect" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="gjL-kx-AWB">
735+
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
736+
<font key="font" metaFont="cellTitle"/>
737+
</buttonCell>
738+
<connections>
739+
<action selector="okBtnClick:" target="XfG-lQ-9wD" id="3oO-Ga-7df"/>
740+
</connections>
741+
</button>
742+
</subviews>
743+
<constraints>
744+
<constraint firstItem="nfE-6r-yAK" firstAttribute="centerY" secondItem="C59-ck-nGN" secondAttribute="centerY" id="A0p-0C-hu8"/>
745+
<constraint firstItem="nfE-6r-yAK" firstAttribute="centerX" secondItem="C59-ck-nGN" secondAttribute="centerX" id="RBl-2x-pTw"/>
746+
</constraints>
747+
</customView>
748+
</subviews>
749+
<constraints>
750+
<constraint firstAttribute="trailing" secondItem="WJp-1f-NCl" secondAttribute="trailing" id="7eI-4c-mE5"/>
751+
<constraint firstAttribute="bottom" secondItem="WJp-1f-NCl" secondAttribute="bottom" constant="80" id="Jv3-mI-BbU"/>
752+
<constraint firstItem="C59-ck-nGN" firstAttribute="top" secondItem="WJp-1f-NCl" secondAttribute="bottom" id="Lkb-hi-1cd"/>
753+
<constraint firstItem="WJp-1f-NCl" firstAttribute="top" secondItem="m2S-Jp-Qdl" secondAttribute="top" id="Ruf-qF-nV5"/>
754+
<constraint firstItem="WJp-1f-NCl" firstAttribute="leading" secondItem="m2S-Jp-Qdl" secondAttribute="leading" id="SDp-GO-Kdk"/>
755+
<constraint firstItem="C59-ck-nGN" firstAttribute="leading" secondItem="m2S-Jp-Qdl" secondAttribute="leading" id="Yfi-CW-bFX"/>
756+
<constraint firstAttribute="trailing" secondItem="C59-ck-nGN" secondAttribute="trailing" id="aEx-f7-CAA"/>
757+
<constraint firstAttribute="bottom" secondItem="C59-ck-nGN" secondAttribute="bottom" id="qsX-eM-c4N"/>
758+
</constraints>
710759
</view>
760+
<connections>
761+
<outlet property="dragView" destination="WJp-1f-NCl" id="ndu-Ki-kxL"/>
762+
<outlet property="titleLbl" destination="96Z-Oy-Ar9" id="bTi-Tr-yuv"/>
763+
</connections>
711764
</viewController>
712765
<customObject id="rPt-NT-nkU" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
713766
</objects>

0 commit comments

Comments
 (0)