Skip to content

Commit 242c48d

Browse files
committed
Added AutoreleasePoolTest
1 parent dfe8a9c commit 242c48d

10 files changed

+1321
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>UIApplicationExitsOnSuspend</key>
6+
<true/>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleDisplayName</key>
10+
<string>${PRODUCT_NAME}</string>
11+
<key>CFBundleExecutable</key>
12+
<string>${EXECUTABLE_NAME}</string>
13+
<key>CFBundleIconFile</key>
14+
<string></string>
15+
<key>CFBundleIdentifier</key>
16+
<string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
17+
<key>CFBundleInfoDictionaryVersion</key>
18+
<string>6.0</string>
19+
<key>CFBundleName</key>
20+
<string>${PRODUCT_NAME}</string>
21+
<key>CFBundlePackageType</key>
22+
<string>APPL</string>
23+
<key>CFBundleSignature</key>
24+
<string>????</string>
25+
<key>CFBundleVersion</key>
26+
<string>1.0</string>
27+
<key>LSRequiresIPhoneOS</key>
28+
<true/>
29+
<key>NSMainNibFile</key>
30+
<string>MainWindow</string>
31+
</dict>
32+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 45;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
1D3623260D0F684500981E51 /* AutoreleasePoolTestAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* AutoreleasePoolTestAppDelegate.m */; };
11+
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
12+
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
13+
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
14+
288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; };
15+
2899E5220DE3E06400AC0155 /* AutoreleasePoolTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2899E5210DE3E06400AC0155 /* AutoreleasePoolTestViewController.xib */; };
16+
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; };
17+
28D7ACF80DDB3853001CB0EB /* AutoreleasePoolTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D7ACF70DDB3853001CB0EB /* AutoreleasePoolTestViewController.m */; };
18+
/* End PBXBuildFile section */
19+
20+
/* Begin PBXFileReference section */
21+
1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
22+
1D3623240D0F684500981E51 /* AutoreleasePoolTestAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoreleasePoolTestAppDelegate.h; sourceTree = "<group>"; };
23+
1D3623250D0F684500981E51 /* AutoreleasePoolTestAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AutoreleasePoolTestAppDelegate.m; sourceTree = "<group>"; };
24+
1D6058910D05DD3D006BFB54 /* AutoreleasePoolTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AutoreleasePoolTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
25+
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
26+
288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
27+
2899E5210DE3E06400AC0155 /* AutoreleasePoolTestViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AutoreleasePoolTestViewController.xib; sourceTree = "<group>"; };
28+
28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = "<group>"; };
29+
28D7ACF60DDB3853001CB0EB /* AutoreleasePoolTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoreleasePoolTestViewController.h; sourceTree = "<group>"; };
30+
28D7ACF70DDB3853001CB0EB /* AutoreleasePoolTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AutoreleasePoolTestViewController.m; sourceTree = "<group>"; };
31+
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
32+
32CA4F630368D1EE00C91783 /* AutoreleasePoolTest_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoreleasePoolTest_Prefix.pch; sourceTree = "<group>"; };
33+
8D1107310486CEB800E47090 /* AutoreleasePoolTest-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "AutoreleasePoolTest-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
34+
/* End PBXFileReference section */
35+
36+
/* Begin PBXFrameworksBuildPhase section */
37+
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
38+
isa = PBXFrameworksBuildPhase;
39+
buildActionMask = 2147483647;
40+
files = (
41+
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
42+
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
43+
288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */,
44+
);
45+
runOnlyForDeploymentPostprocessing = 0;
46+
};
47+
/* End PBXFrameworksBuildPhase section */
48+
49+
/* Begin PBXGroup section */
50+
080E96DDFE201D6D7F000001 /* Classes */ = {
51+
isa = PBXGroup;
52+
children = (
53+
1D3623240D0F684500981E51 /* AutoreleasePoolTestAppDelegate.h */,
54+
1D3623250D0F684500981E51 /* AutoreleasePoolTestAppDelegate.m */,
55+
28D7ACF60DDB3853001CB0EB /* AutoreleasePoolTestViewController.h */,
56+
28D7ACF70DDB3853001CB0EB /* AutoreleasePoolTestViewController.m */,
57+
);
58+
path = Classes;
59+
sourceTree = "<group>";
60+
};
61+
19C28FACFE9D520D11CA2CBB /* Products */ = {
62+
isa = PBXGroup;
63+
children = (
64+
1D6058910D05DD3D006BFB54 /* AutoreleasePoolTest.app */,
65+
);
66+
name = Products;
67+
sourceTree = "<group>";
68+
};
69+
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
70+
isa = PBXGroup;
71+
children = (
72+
080E96DDFE201D6D7F000001 /* Classes */,
73+
29B97315FDCFA39411CA2CEA /* Other Sources */,
74+
29B97317FDCFA39411CA2CEA /* Resources */,
75+
29B97323FDCFA39411CA2CEA /* Frameworks */,
76+
19C28FACFE9D520D11CA2CBB /* Products */,
77+
);
78+
name = CustomTemplate;
79+
sourceTree = "<group>";
80+
};
81+
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
82+
isa = PBXGroup;
83+
children = (
84+
32CA4F630368D1EE00C91783 /* AutoreleasePoolTest_Prefix.pch */,
85+
29B97316FDCFA39411CA2CEA /* main.m */,
86+
);
87+
name = "Other Sources";
88+
sourceTree = "<group>";
89+
};
90+
29B97317FDCFA39411CA2CEA /* Resources */ = {
91+
isa = PBXGroup;
92+
children = (
93+
2899E5210DE3E06400AC0155 /* AutoreleasePoolTestViewController.xib */,
94+
28AD733E0D9D9553002E5188 /* MainWindow.xib */,
95+
8D1107310486CEB800E47090 /* AutoreleasePoolTest-Info.plist */,
96+
);
97+
name = Resources;
98+
sourceTree = "<group>";
99+
};
100+
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
101+
isa = PBXGroup;
102+
children = (
103+
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
104+
1D30AB110D05D00D00671497 /* Foundation.framework */,
105+
288765A40DF7441C002DB57D /* CoreGraphics.framework */,
106+
);
107+
name = Frameworks;
108+
sourceTree = "<group>";
109+
};
110+
/* End PBXGroup section */
111+
112+
/* Begin PBXNativeTarget section */
113+
1D6058900D05DD3D006BFB54 /* AutoreleasePoolTest */ = {
114+
isa = PBXNativeTarget;
115+
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "AutoreleasePoolTest" */;
116+
buildPhases = (
117+
1D60588D0D05DD3D006BFB54 /* Resources */,
118+
1D60588E0D05DD3D006BFB54 /* Sources */,
119+
1D60588F0D05DD3D006BFB54 /* Frameworks */,
120+
);
121+
buildRules = (
122+
);
123+
dependencies = (
124+
);
125+
name = AutoreleasePoolTest;
126+
productName = AutoreleasePoolTest;
127+
productReference = 1D6058910D05DD3D006BFB54 /* AutoreleasePoolTest.app */;
128+
productType = "com.apple.product-type.application";
129+
};
130+
/* End PBXNativeTarget section */
131+
132+
/* Begin PBXProject section */
133+
29B97313FDCFA39411CA2CEA /* Project object */ = {
134+
isa = PBXProject;
135+
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "AutoreleasePoolTest" */;
136+
compatibilityVersion = "Xcode 3.1";
137+
developmentRegion = English;
138+
hasScannedForEncodings = 1;
139+
knownRegions = (
140+
English,
141+
Japanese,
142+
French,
143+
German,
144+
);
145+
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
146+
projectDirPath = "";
147+
projectRoot = "";
148+
targets = (
149+
1D6058900D05DD3D006BFB54 /* AutoreleasePoolTest */,
150+
);
151+
};
152+
/* End PBXProject section */
153+
154+
/* Begin PBXResourcesBuildPhase section */
155+
1D60588D0D05DD3D006BFB54 /* Resources */ = {
156+
isa = PBXResourcesBuildPhase;
157+
buildActionMask = 2147483647;
158+
files = (
159+
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
160+
2899E5220DE3E06400AC0155 /* AutoreleasePoolTestViewController.xib in Resources */,
161+
);
162+
runOnlyForDeploymentPostprocessing = 0;
163+
};
164+
/* End PBXResourcesBuildPhase section */
165+
166+
/* Begin PBXSourcesBuildPhase section */
167+
1D60588E0D05DD3D006BFB54 /* Sources */ = {
168+
isa = PBXSourcesBuildPhase;
169+
buildActionMask = 2147483647;
170+
files = (
171+
1D60589B0D05DD56006BFB54 /* main.m in Sources */,
172+
1D3623260D0F684500981E51 /* AutoreleasePoolTestAppDelegate.m in Sources */,
173+
28D7ACF80DDB3853001CB0EB /* AutoreleasePoolTestViewController.m in Sources */,
174+
);
175+
runOnlyForDeploymentPostprocessing = 0;
176+
};
177+
/* End PBXSourcesBuildPhase section */
178+
179+
/* Begin XCBuildConfiguration section */
180+
1D6058940D05DD3E006BFB54 /* Debug */ = {
181+
isa = XCBuildConfiguration;
182+
buildSettings = {
183+
ALWAYS_SEARCH_USER_PATHS = NO;
184+
COPY_PHASE_STRIP = NO;
185+
GCC_DYNAMIC_NO_PIC = NO;
186+
GCC_OPTIMIZATION_LEVEL = 0;
187+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
188+
GCC_PREFIX_HEADER = AutoreleasePoolTest_Prefix.pch;
189+
INFOPLIST_FILE = "AutoreleasePoolTest-Info.plist";
190+
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
191+
PRODUCT_NAME = AutoreleasePoolTest;
192+
};
193+
name = Debug;
194+
};
195+
1D6058950D05DD3E006BFB54 /* Release */ = {
196+
isa = XCBuildConfiguration;
197+
buildSettings = {
198+
ALWAYS_SEARCH_USER_PATHS = NO;
199+
COPY_PHASE_STRIP = YES;
200+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
201+
GCC_PREFIX_HEADER = AutoreleasePoolTest_Prefix.pch;
202+
INFOPLIST_FILE = "AutoreleasePoolTest-Info.plist";
203+
PRODUCT_NAME = AutoreleasePoolTest;
204+
VALIDATE_PRODUCT = YES;
205+
};
206+
name = Release;
207+
};
208+
C01FCF4F08A954540054247B /* Debug */ = {
209+
isa = XCBuildConfiguration;
210+
buildSettings = {
211+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
212+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
213+
GCC_C_LANGUAGE_STANDARD = c99;
214+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
215+
GCC_WARN_UNUSED_VARIABLE = YES;
216+
PREBINDING = NO;
217+
SDKROOT = iphoneos4.1;
218+
};
219+
name = Debug;
220+
};
221+
C01FCF5008A954540054247B /* Release */ = {
222+
isa = XCBuildConfiguration;
223+
buildSettings = {
224+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
225+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
226+
GCC_C_LANGUAGE_STANDARD = c99;
227+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
228+
GCC_WARN_UNUSED_VARIABLE = YES;
229+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
230+
PREBINDING = NO;
231+
SDKROOT = iphoneos4.1;
232+
};
233+
name = Release;
234+
};
235+
/* End XCBuildConfiguration section */
236+
237+
/* Begin XCConfigurationList section */
238+
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "AutoreleasePoolTest" */ = {
239+
isa = XCConfigurationList;
240+
buildConfigurations = (
241+
1D6058940D05DD3E006BFB54 /* Debug */,
242+
1D6058950D05DD3E006BFB54 /* Release */,
243+
);
244+
defaultConfigurationIsVisible = 0;
245+
defaultConfigurationName = Release;
246+
};
247+
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "AutoreleasePoolTest" */ = {
248+
isa = XCConfigurationList;
249+
buildConfigurations = (
250+
C01FCF4F08A954540054247B /* Debug */,
251+
C01FCF5008A954540054247B /* Release */,
252+
);
253+
defaultConfigurationIsVisible = 0;
254+
defaultConfigurationName = Release;
255+
};
256+
/* End XCConfigurationList section */
257+
};
258+
rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
259+
}

0 commit comments

Comments
 (0)