• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

SWFファイル内の画像を表示/書き出しするGUIツール


Commit MetaInfo

修訂5e1ddb95813f1a7d2e0a4808d3eaae54e6bf5e60 (tree)
時間2016-10-02 13:11:44
作者masakih <masakih@user...>
Commitermasakih

Log Message

AppDelegateを削除

Change Summary

差異

--- a/KoreNoKaraSu.xcodeproj/project.pbxproj
+++ b/KoreNoKaraSu.xcodeproj/project.pbxproj
@@ -7,7 +7,6 @@
77 objects = {
88
99 /* Begin PBXBuildFile section */
10- F42ADB271D9A91D300407165 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F42ADB261D9A91D300407165 /* AppDelegate.m */; };
1110 F42ADB2A1D9A91D300407165 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F42ADB291D9A91D300407165 /* main.m */; };
1211 F42ADB301D9A91D400407165 /* HMSwfDocument.xib in Resources */ = {isa = PBXBuildFile; fileRef = F42ADB2E1D9A91D400407165 /* HMSwfDocument.xib */; };
1312 F42ADB321D9A91D400407165 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F42ADB311D9A91D400407165 /* Assets.xcassets */; };
@@ -39,8 +38,6 @@
3938
4039 /* Begin PBXFileReference section */
4140 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>"; };
4441 F42ADB291D9A91D300407165 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
4542 F42ADB2F1D9A91D400407165 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HMSwfDocument.xib; sourceTree = "<group>"; };
4643 F42ADB311D9A91D400407165 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
@@ -92,8 +89,6 @@
9289 F42ADB241D9A91D300407165 /* KoreNoKaraSu */ = {
9390 isa = PBXGroup;
9491 children = (
95- F42ADB251D9A91D300407165 /* AppDelegate.h */,
96- F42ADB261D9A91D300407165 /* AppDelegate.m */,
9792 F42ADB6B1D9FC7FD00407165 /* HMSwfDocument.swift */,
9893 F42ADB2E1D9A91D400407165 /* HMSwfDocument.xib */,
9994 F42ADB8B1DA0909200407165 /* HMSwfImage.swift */,
@@ -230,7 +225,6 @@
230225 F42ADB8C1DA0909200407165 /* HMSwfImage.swift in Sources */,
231226 F42ADB8E1DA09CEF00407165 /* HMTemporaryDirectory.swift in Sources */,
232227 F42ADB2A1D9A91D300407165 /* main.m in Sources */,
233- F42ADB271D9A91D300407165 /* AppDelegate.m in Sources */,
234228 );
235229 runOnlyForDeploymentPostprocessing = 0;
236230 };
@@ -389,7 +383,6 @@
389383 LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
390384 PRODUCT_BUNDLE_IDENTIFIER = com.masakih.KoreNoKaraSu;
391385 PRODUCT_NAME = "$(TARGET_NAME)";
392- SWIFT_OBJC_BRIDGING_HEADER = "KoreNoKaraSu/KoreNoKaraSu-Bridging-Header.h";
393386 SWIFT_OPTIMIZATION_LEVEL = "-Onone";
394387 SWIFT_VERSION = 3.0;
395388 };
@@ -405,7 +398,6 @@
405398 LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
406399 PRODUCT_BUNDLE_IDENTIFIER = com.masakih.KoreNoKaraSu;
407400 PRODUCT_NAME = "$(TARGET_NAME)";
408- SWIFT_OBJC_BRIDGING_HEADER = "KoreNoKaraSu/KoreNoKaraSu-Bridging-Header.h";
409401 SWIFT_VERSION = 3.0;
410402 };
411403 name = Release;
--- a/KoreNoKaraSu/AppDelegate.h
+++ /dev/null
@@ -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-
--- a/KoreNoKaraSu/AppDelegate.m
+++ /dev/null
@@ -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
--- a/KoreNoKaraSu/Base.lproj/MainMenu.xib
+++ b/KoreNoKaraSu/Base.lproj/MainMenu.xib
@@ -5,14 +5,9 @@
55 <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11201"/>
66 </dependencies>
77 <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"/>
139 <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
1410 <customObject id="-3" userLabel="Application" customClass="NSObject"/>
15- <customObject id="Voe-Tx-rLC" customClass="AppDelegate"/>
1611 <customObject id="YLy-65-1bz" customClass="NSFontManager"/>
1712 <menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
1813 <items>