SWFファイル内の画像を表示/書き出しするGUIツール
修訂 | 5e1ddb95813f1a7d2e0a4808d3eaae54e6bf5e60 (tree) |
---|---|
時間 | 2016-10-02 13:11:44 |
作者 | masakih <masakih@user...> |
Commiter | masakih |
AppDelegateを削除
@@ -7,7 +7,6 @@ | ||
7 | 7 | objects = { |
8 | 8 | |
9 | 9 | /* Begin PBXBuildFile section */ |
10 | - F42ADB271D9A91D300407165 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F42ADB261D9A91D300407165 /* AppDelegate.m */; }; | |
11 | 10 | F42ADB2A1D9A91D300407165 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F42ADB291D9A91D300407165 /* main.m */; }; |
12 | 11 | F42ADB301D9A91D400407165 /* HMSwfDocument.xib in Resources */ = {isa = PBXBuildFile; fileRef = F42ADB2E1D9A91D400407165 /* HMSwfDocument.xib */; }; |
13 | 12 | F42ADB321D9A91D400407165 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F42ADB311D9A91D400407165 /* Assets.xcassets */; }; |
@@ -39,8 +38,6 @@ | ||
39 | 38 | |
40 | 39 | /* Begin PBXFileReference section */ |
41 | 40 | F42ADB221D9A91D300407165 /* KoreNoKaraSu.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KoreNoKaraSu.app; sourceTree = BUILT_PRODUCTS_DIR; }; |
42 | - F42ADB251D9A91D300407165 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; }; | |
43 | - F42ADB261D9A91D300407165 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; }; | |
44 | 41 | F42ADB291D9A91D300407165 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; |
45 | 42 | F42ADB2F1D9A91D400407165 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HMSwfDocument.xib; sourceTree = "<group>"; }; |
46 | 43 | F42ADB311D9A91D400407165 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; |
@@ -92,8 +89,6 @@ | ||
92 | 89 | F42ADB241D9A91D300407165 /* KoreNoKaraSu */ = { |
93 | 90 | isa = PBXGroup; |
94 | 91 | children = ( |
95 | - F42ADB251D9A91D300407165 /* AppDelegate.h */, | |
96 | - F42ADB261D9A91D300407165 /* AppDelegate.m */, | |
97 | 92 | F42ADB6B1D9FC7FD00407165 /* HMSwfDocument.swift */, |
98 | 93 | F42ADB2E1D9A91D400407165 /* HMSwfDocument.xib */, |
99 | 94 | F42ADB8B1DA0909200407165 /* HMSwfImage.swift */, |
@@ -230,7 +225,6 @@ | ||
230 | 225 | F42ADB8C1DA0909200407165 /* HMSwfImage.swift in Sources */, |
231 | 226 | F42ADB8E1DA09CEF00407165 /* HMTemporaryDirectory.swift in Sources */, |
232 | 227 | F42ADB2A1D9A91D300407165 /* main.m in Sources */, |
233 | - F42ADB271D9A91D300407165 /* AppDelegate.m in Sources */, | |
234 | 228 | ); |
235 | 229 | runOnlyForDeploymentPostprocessing = 0; |
236 | 230 | }; |
@@ -389,7 +383,6 @@ | ||
389 | 383 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; |
390 | 384 | PRODUCT_BUNDLE_IDENTIFIER = com.masakih.KoreNoKaraSu; |
391 | 385 | PRODUCT_NAME = "$(TARGET_NAME)"; |
392 | - SWIFT_OBJC_BRIDGING_HEADER = "KoreNoKaraSu/KoreNoKaraSu-Bridging-Header.h"; | |
393 | 386 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; |
394 | 387 | SWIFT_VERSION = 3.0; |
395 | 388 | }; |
@@ -405,7 +398,6 @@ | ||
405 | 398 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; |
406 | 399 | PRODUCT_BUNDLE_IDENTIFIER = com.masakih.KoreNoKaraSu; |
407 | 400 | PRODUCT_NAME = "$(TARGET_NAME)"; |
408 | - SWIFT_OBJC_BRIDGING_HEADER = "KoreNoKaraSu/KoreNoKaraSu-Bridging-Header.h"; | |
409 | 401 | SWIFT_VERSION = 3.0; |
410 | 402 | }; |
411 | 403 | name = Release; |
@@ -1,15 +0,0 @@ | ||
1 | -// | |
2 | -// AppDelegate.h | |
3 | -// KoreNoKaraSu | |
4 | -// | |
5 | -// Created by Hori,Masaki on 2016/09/27. | |
6 | -// Copyright © 2016年 Hori,Masaki. All rights reserved. | |
7 | -// | |
8 | - | |
9 | -#import <Cocoa/Cocoa.h> | |
10 | - | |
11 | -@interface AppDelegate : NSObject <NSApplicationDelegate> | |
12 | - | |
13 | - | |
14 | -@end | |
15 | - |
@@ -1,27 +0,0 @@ | ||
1 | -// | |
2 | -// AppDelegate.m | |
3 | -// KoreNoKaraSu | |
4 | -// | |
5 | -// Created by Hori,Masaki on 2016/09/27. | |
6 | -// Copyright © 2016年 Hori,Masaki. All rights reserved. | |
7 | -// | |
8 | - | |
9 | -#import "AppDelegate.h" | |
10 | - | |
11 | -@interface AppDelegate () | |
12 | - | |
13 | -@end | |
14 | - | |
15 | -@implementation AppDelegate | |
16 | - | |
17 | -- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { | |
18 | - // Insert code here to initialize your application | |
19 | -} | |
20 | - | |
21 | - | |
22 | -- (void)applicationWillTerminate:(NSNotification *)aNotification { | |
23 | - // Insert code here to tear down your application | |
24 | -} | |
25 | - | |
26 | - | |
27 | -@end |
@@ -5,14 +5,9 @@ | ||
5 | 5 | <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11201"/> |
6 | 6 | </dependencies> |
7 | 7 | <objects> |
8 | - <customObject id="-2" userLabel="File's Owner" customClass="NSApplication"> | |
9 | - <connections> | |
10 | - <outlet property="delegate" destination="Voe-Tx-rLC" id="GzC-gU-4Uq"/> | |
11 | - </connections> | |
12 | - </customObject> | |
8 | + <customObject id="-2" userLabel="File's Owner" customClass="NSApplication"/> | |
13 | 9 | <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> |
14 | 10 | <customObject id="-3" userLabel="Application" customClass="NSObject"/> |
15 | - <customObject id="Voe-Tx-rLC" customClass="AppDelegate"/> | |
16 | 11 | <customObject id="YLy-65-1bz" customClass="NSFontManager"/> |
17 | 12 | <menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6"> |
18 | 13 | <items> |