iCuke 0.5.5 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -0
- data/.gitmodules +3 -0
- data/README.rdoc +8 -7
- data/Rakefile +10 -30
- data/VERSION +1 -1
- data/app/.gitignore +3 -0
- data/app/LICENSE +20 -0
- data/app/Readme.markdown +3 -0
- data/app/Shared/AppDelegate_Shared.h +17 -0
- data/app/Shared/AppDelegate_Shared.m +25 -0
- data/app/{images/yellowslide.png → Shared/Icon.png} +0 -0
- data/app/Shared/ModalViewController.h +15 -0
- data/app/Shared/ModalViewController.m +96 -0
- data/app/Shared/TestViewController_Shared.h +15 -0
- data/app/Shared/TestViewController_Shared.m +43 -0
- data/app/{Info.plist → Shared/Universal-Info.plist} +17 -4
- data/app/Shared/Universal_Prefix.pch +8 -0
- data/app/Shared/main.m +14 -0
- data/app/Universal.xcodeproj/project.pbxproj +301 -0
- data/app/iPad/AppDelegate_Pad.h +15 -0
- data/app/iPad/AppDelegate_Pad.m +28 -0
- data/app/iPad/Default-Landscape.png +0 -0
- data/app/iPad/Default-Portrait.png +0 -0
- data/app/iPad/MainWindow_Pad.xib +343 -0
- data/app/iPad/TestViewController_Pad.h +15 -0
- data/app/iPad/TestViewController_Pad.m +52 -0
- data/app/iPhone/AppDelegate_Phone.h +15 -0
- data/app/iPhone/AppDelegate_Phone.m +28 -0
- data/app/{images/segment_search.png → iPhone/Default.png} +0 -0
- data/app/iPhone/MainWindow_Phone.xib +363 -0
- data/app/iPhone/TestViewController_Phone.h +15 -0
- data/app/iPhone/TestViewController_Phone.m +36 -0
- data/bin/.gitignore +1 -0
- data/bin/icuke +10 -0
- data/bin/icuke-module +17 -0
- data/ext/.gitignore +1 -0
- data/ext/Rakefile +6 -0
- data/ext/WaxSim/Simulator.h +31 -0
- data/ext/WaxSim/Simulator.m +131 -0
- data/ext/WaxSim/WaxSim.m +110 -0
- data/ext/WaxSim/WaxSim.xcodeproj/project.pbxproj +238 -0
- data/ext/WaxSim/WaxSim_Prefix.pch +7 -0
- data/ext/WaxSim/iPhoneSimulatorRemoteClient/iPhoneSimulatorRemoteClient.h +126 -0
- data/ext/iCuke/Rakefile +14 -17
- data/ext/iCuke/libicuke-sdk3.1.dylib +0 -0
- data/ext/iCuke/libicuke-sdk4.0.dylib +0 -0
- data/ext/iCuke/libicuke.dylib +0 -0
- data/ext/iCuke/{DefaultsResponse.h → sdk3.1/DefaultsResponse.h} +0 -0
- data/ext/iCuke/{DefaultsResponse.m → sdk3.1/DefaultsResponse.m} +0 -0
- data/ext/iCuke/{EventResponse.h → sdk3.1/EventResponse.h} +0 -0
- data/ext/iCuke/{EventResponse.m → sdk3.1/EventResponse.m} +0 -0
- data/ext/iCuke/sdk3.1/ModuleResponse.h +5 -0
- data/ext/iCuke/sdk3.1/ModuleResponse.m +76 -0
- data/ext/iCuke/sdk3.1/Rakefile +20 -0
- data/ext/iCuke/{Recorder.h → sdk3.1/Recorder.h} +0 -0
- data/ext/iCuke/{Recorder.m → sdk3.1/Recorder.m} +0 -0
- data/ext/iCuke/{RecorderResponse.h → sdk3.1/RecorderResponse.h} +0 -0
- data/ext/iCuke/{RecorderResponse.m → sdk3.1/RecorderResponse.m} +0 -0
- data/ext/iCuke/{SynthesizeSingleton.h → sdk3.1/SynthesizeSingleton.h} +0 -0
- data/ext/iCuke/{ViewResponse.h → sdk3.1/ViewResponse.h} +0 -0
- data/ext/iCuke/{ViewResponse.m → sdk3.1/ViewResponse.m} +0 -0
- data/ext/iCuke/{Viewer.h → sdk3.1/Viewer.h} +0 -0
- data/ext/iCuke/sdk3.1/Viewer.m +203 -0
- data/ext/iCuke/{iCukeHTTPResponseHandler.h → sdk3.1/iCukeHTTPResponseHandler.h} +0 -0
- data/ext/iCuke/{iCukeHTTPResponseHandler.m → sdk3.1/iCukeHTTPResponseHandler.m} +0 -0
- data/ext/iCuke/{iCukeHTTPServer.h → sdk3.1/iCukeHTTPServer.h} +0 -0
- data/ext/iCuke/{iCukeHTTPServer.m → sdk3.1/iCukeHTTPServer.m} +0 -0
- data/ext/iCuke/{iCukeServer.h → sdk3.1/iCukeServer.h} +0 -2
- data/ext/iCuke/{iCukeServer.m → sdk3.1/iCukeServer.m} +22 -20
- data/ext/iCuke/{json → sdk3.1/json}/JSON.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/NSObject+SBJSON.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/NSObject+SBJSON.m +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/NSString+SBJSON.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/NSString+SBJSON.m +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJSON.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJSON.m +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJsonBase.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJsonBase.m +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJsonParser.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJsonParser.m +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJsonWriter.h +0 -0
- data/ext/iCuke/{json → sdk3.1/json}/SBJsonWriter.m +0 -0
- data/ext/iCuke/sdk4.0/DefaultsResponse.h +5 -0
- data/ext/iCuke/sdk4.0/DefaultsResponse.m +66 -0
- data/ext/iCuke/sdk4.0/EventResponse.h +5 -0
- data/ext/iCuke/sdk4.0/EventResponse.m +130 -0
- data/ext/iCuke/sdk4.0/ModuleResponse.h +5 -0
- data/ext/iCuke/sdk4.0/ModuleResponse.m +76 -0
- data/ext/iCuke/sdk4.0/Rakefile +20 -0
- data/ext/iCuke/sdk4.0/Recorder.h +17 -0
- data/ext/iCuke/sdk4.0/Recorder.m +90 -0
- data/ext/iCuke/sdk4.0/RecorderResponse.h +6 -0
- data/ext/iCuke/sdk4.0/RecorderResponse.m +68 -0
- data/ext/iCuke/sdk4.0/SynthesizeSingleton.h +68 -0
- data/ext/iCuke/sdk4.0/ViewResponse.h +5 -0
- data/ext/iCuke/sdk4.0/ViewResponse.m +84 -0
- data/ext/iCuke/sdk4.0/Viewer.h +8 -0
- data/ext/iCuke/{Viewer.m → sdk4.0/Viewer.m} +14 -0
- data/ext/iCuke/sdk4.0/iCukeHTTPResponseHandler.h +50 -0
- data/ext/iCuke/sdk4.0/iCukeHTTPResponseHandler.m +381 -0
- data/ext/iCuke/sdk4.0/iCukeHTTPServer.h +53 -0
- data/ext/iCuke/sdk4.0/iCukeHTTPServer.m +365 -0
- data/ext/iCuke/sdk4.0/iCukeServer.h +14 -0
- data/ext/iCuke/sdk4.0/iCukeServer.m +65 -0
- data/ext/iCuke/sdk4.0/json/JSON.h +50 -0
- data/ext/iCuke/sdk4.0/json/NSObject+SBJSON.h +68 -0
- data/ext/iCuke/sdk4.0/json/NSObject+SBJSON.m +53 -0
- data/ext/iCuke/sdk4.0/json/NSString+SBJSON.h +58 -0
- data/ext/iCuke/sdk4.0/json/NSString+SBJSON.m +55 -0
- data/ext/iCuke/sdk4.0/json/SBJSON.h +75 -0
- data/ext/iCuke/sdk4.0/json/SBJSON.m +212 -0
- data/ext/iCuke/sdk4.0/json/SBJsonBase.h +86 -0
- data/ext/iCuke/sdk4.0/json/SBJsonBase.m +78 -0
- data/ext/iCuke/sdk4.0/json/SBJsonParser.h +87 -0
- data/ext/iCuke/sdk4.0/json/SBJsonParser.m +475 -0
- data/ext/iCuke/sdk4.0/json/SBJsonWriter.h +129 -0
- data/ext/iCuke/sdk4.0/json/SBJsonWriter.m +228 -0
- data/features/iphone.feature +15 -0
- data/features/support/env.rb +1 -1
- data/iCuke.gemspec +118 -114
- data/lib/icuke/cucumber.rb +93 -64
- data/lib/icuke/screen.rb +110 -0
- data/lib/icuke/sdk.rb +134 -0
- data/lib/icuke/simulate.rb +9 -5
- data/lib/icuke/simulator.rb +10 -11
- data/lib/icuke/waxsim.rb +36 -0
- data/lib/icuke.rb +2 -1
- metadata +124 -129
- data/app/AlertsViewController.h +0 -59
- data/app/AlertsViewController.m +0 -341
- data/app/AppDelegate.h +0 -60
- data/app/AppDelegate.m +0 -101
- data/app/ButtonsViewController.h +0 -80
- data/app/ButtonsViewController.m +0 -448
- data/app/Constants.h +0 -58
- data/app/ControlsViewController.h +0 -72
- data/app/ControlsViewController.m +0 -379
- data/app/ImagesViewController.h +0 -62
- data/app/ImagesViewController.m +0 -137
- data/app/MainViewController.h +0 -57
- data/app/MainViewController.m +0 -262
- data/app/Picker/CustomPickerDataSource.h +0 -55
- data/app/Picker/CustomPickerDataSource.m +0 -135
- data/app/Picker/CustomView.h +0 -62
- data/app/Picker/CustomView.m +0 -119
- data/app/PickerViewController.h +0 -88
- data/app/PickerViewController.m +0 -402
- data/app/Prefix.pch +0 -5
- data/app/ReadMe.txt +0 -82
- data/app/SearchBarController.h +0 -58
- data/app/SearchBarController.m +0 -105
- data/app/SegmentViewController.h +0 -54
- data/app/SegmentViewController.m +0 -195
- data/app/TextFieldController.h +0 -67
- data/app/TextFieldController.m +0 -342
- data/app/TextViewController.h +0 -57
- data/app/TextViewController.m +0 -164
- data/app/ToolbarViewController.h +0 -74
- data/app/ToolbarViewController.m +0 -303
- data/app/TransitionViewController.h +0 -64
- data/app/TransitionViewController.m +0 -178
- data/app/UICatalog.xcodeproj/project.pbxproj +0 -615
- data/app/WebViewController.h +0 -57
- data/app/WebViewController.m +0 -173
- data/app/en.lproj/AlertsViewController.xib +0 -144
- data/app/en.lproj/ButtonsViewController.xib +0 -147
- data/app/en.lproj/ControlsViewController.xib +0 -147
- data/app/en.lproj/ImagesViewController.xib +0 -264
- data/app/en.lproj/Localizable.strings +0 -41
- data/app/en.lproj/MainWindow.xib +0 -306
- data/app/en.lproj/PickerViewController.xib +0 -415
- data/app/en.lproj/SearchBarController.xib +0 -142
- data/app/en.lproj/SegmentViewController.xib +0 -143
- data/app/en.lproj/TextFieldController.xib +0 -167
- data/app/en.lproj/TextViewController.xib +0 -149
- data/app/en.lproj/ToolbarViewController.xib +0 -491
- data/app/en.lproj/TransitionViewController.xib +0 -255
- data/app/en.lproj/WebViewController.xib +0 -141
- data/app/images/12-6AM.png +0 -0
- data/app/images/12-6PM.png +0 -0
- data/app/images/6-12AM.png +0 -0
- data/app/images/6-12PM.png +0 -0
- data/app/images/Default.png +0 -0
- data/app/images/Icon.png +0 -0
- data/app/images/UIButton_custom.png +0 -0
- data/app/images/blueButton.png +0 -0
- data/app/images/orangeslide.png +0 -0
- data/app/images/scene1.jpg +0 -0
- data/app/images/scene2.jpg +0 -0
- data/app/images/scene3.jpg +0 -0
- data/app/images/scene4.jpg +0 -0
- data/app/images/scene5.jpg +0 -0
- data/app/images/segment_check.png +0 -0
- data/app/images/segment_tools.png +0 -0
- data/app/images/slider_ball.png +0 -0
- data/app/images/whiteButton.png +0 -0
- data/app/main.m +0 -58
- data/features/uicatalog.feature +0 -20
- data/lib/icuke/com.apple.Accessibility.plist +0 -0
- data/lib/icuke/headless.rb +0 -54
- data/lib/icuke/xcode.rb +0 -164
|
@@ -1,615 +0,0 @@
|
|
|
1
|
-
// !$*UTF8*$!
|
|
2
|
-
{
|
|
3
|
-
archiveVersion = 1;
|
|
4
|
-
classes = {
|
|
5
|
-
};
|
|
6
|
-
objectVersion = 45;
|
|
7
|
-
objects = {
|
|
8
|
-
|
|
9
|
-
/* Begin PBXBuildFile section */
|
|
10
|
-
1D3623EC0D0F72F000981E51 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
|
|
11
|
-
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
|
|
12
|
-
1D60589E0D05DD5A006BFB54 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DC4B2650D05D9C8003A8154 /* CoreFoundation.framework */; };
|
|
13
|
-
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
|
|
14
|
-
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
|
|
15
|
-
530986800DE753E300CC7C10 /* blueButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 5309867F0DE753E300CC7C10 /* blueButton.png */; };
|
|
16
|
-
5316140F0DDCC3480085B0B5 /* TransitionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5316140D0DDCC3480085B0B5 /* TransitionViewController.m */; };
|
|
17
|
-
531992A70DCBAE7300530CD7 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 531992A30DCBAE7300530CD7 /* MainWindow.xib */; };
|
|
18
|
-
531992A80DCBAE7300530CD7 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 531992A50DCBAE7300530CD7 /* Localizable.strings */; };
|
|
19
|
-
5348C5BE0DB55CE800E8144A /* SearchBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5348C5BC0DB55CE800E8144A /* SearchBarController.m */; };
|
|
20
|
-
534E452F0D65F9A800BDA07D /* AlertsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 534E452D0D65F9A800BDA07D /* AlertsViewController.m */; };
|
|
21
|
-
535F14180D6CA6A600F72359 /* TextFieldController.m in Sources */ = {isa = PBXBuildFile; fileRef = 535F14160D6CA6A600F72359 /* TextFieldController.m */; };
|
|
22
|
-
535F6DAB0D709EC3004ACDF8 /* ButtonsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 535F6DAA0D709EC3004ACDF8 /* ButtonsViewController.m */; };
|
|
23
|
-
536493E40D73B63F0048BD96 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 536493E30D73B63F0048BD96 /* Default.png */; };
|
|
24
|
-
537E74AC0D78CBFE00FD5536 /* UIButton_custom.png in Resources */ = {isa = PBXBuildFile; fileRef = 537E74AB0D78CBFE00FD5536 /* UIButton_custom.png */; };
|
|
25
|
-
537E84BD0E804F600029CFC7 /* ButtonsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 537E84BB0E804F600029CFC7 /* ButtonsViewController.xib */; };
|
|
26
|
-
537E84F80E8050F00029CFC7 /* ControlsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 537E84F60E8050F00029CFC7 /* ControlsViewController.xib */; };
|
|
27
|
-
537E85190E8052950029CFC7 /* TextFieldController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 537E85170E8052950029CFC7 /* TextFieldController.xib */; };
|
|
28
|
-
53806CF10DAC02D400A7C7C9 /* ToolbarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53806CEF0DAC02D400A7C7C9 /* ToolbarViewController.m */; };
|
|
29
|
-
538EC3650F9CFA1B0013D94D /* CustomPickerDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 538EC3640F9CFA1B0013D94D /* CustomPickerDataSource.m */; };
|
|
30
|
-
539A106E0E799BC800459348 /* PickerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 539A106C0E799BC800459348 /* PickerViewController.xib */; };
|
|
31
|
-
53B0D4BE0D6A01AF00B4067D /* SegmentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53B0D4BD0D6A01AF00B4067D /* SegmentViewController.m */; };
|
|
32
|
-
53C36FA10D78679000E6AABE /* segment_tools.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C36F9E0D78679000E6AABE /* segment_tools.png */; };
|
|
33
|
-
53C36FA20D78679000E6AABE /* segment_search.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C36F9F0D78679000E6AABE /* segment_search.png */; };
|
|
34
|
-
53C36FA30D78679000E6AABE /* segment_check.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C36FA00D78679000E6AABE /* segment_check.png */; };
|
|
35
|
-
53C36FCF0D786A6A00E6AABE /* slider_ball.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C36FCC0D786A6A00E6AABE /* slider_ball.png */; };
|
|
36
|
-
53C36FD00D786A6A00E6AABE /* yellowslide.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C36FCD0D786A6A00E6AABE /* yellowslide.png */; };
|
|
37
|
-
53C36FD10D786A6A00E6AABE /* orangeslide.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C36FCE0D786A6A00E6AABE /* orangeslide.png */; };
|
|
38
|
-
53C370D20D787C5400E6AABE /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 53C370D10D787C5400E6AABE /* Icon.png */; };
|
|
39
|
-
53CFC03F0D62589300422A0E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC03D0D62589300422A0E /* AppDelegate.m */; };
|
|
40
|
-
53CFC0510D6258A300422A0E /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC0400D6258A300422A0E /* WebViewController.m */; };
|
|
41
|
-
53CFC0520D6258A300422A0E /* TextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC0420D6258A300422A0E /* TextViewController.m */; };
|
|
42
|
-
53CFC0530D6258A300422A0E /* PickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC0440D6258A300422A0E /* PickerViewController.m */; };
|
|
43
|
-
53CFC0540D6258A300422A0E /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC0460D6258A300422A0E /* MainViewController.m */; };
|
|
44
|
-
53CFC0550D6258A300422A0E /* ImagesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC0480D6258A300422A0E /* ImagesViewController.m */; };
|
|
45
|
-
53CFC0560D6258A300422A0E /* ControlsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFC04A0D6258A300422A0E /* ControlsViewController.m */; };
|
|
46
|
-
53CFC0860D62591400422A0E /* scene1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 53CFC0750D62591400422A0E /* scene1.jpg */; };
|
|
47
|
-
53CFC0870D62591400422A0E /* scene2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 53CFC0760D62591400422A0E /* scene2.jpg */; };
|
|
48
|
-
53CFC0880D62591400422A0E /* scene3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 53CFC0770D62591400422A0E /* scene3.jpg */; };
|
|
49
|
-
53CFC0890D62591400422A0E /* scene4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 53CFC0780D62591400422A0E /* scene4.jpg */; };
|
|
50
|
-
53CFC08A0D62591400422A0E /* scene5.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 53CFC0790D62591400422A0E /* scene5.jpg */; };
|
|
51
|
-
53CFC08C0D62591400422A0E /* whiteButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 53CFC07B0D62591400422A0E /* whiteButton.png */; };
|
|
52
|
-
53DD768F0E12CAAC0026169A /* CustomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 53DD768B0E12CAAC0026169A /* CustomView.m */; };
|
|
53
|
-
53DD76C30E12CB670026169A /* 12-6AM.png in Resources */ = {isa = PBXBuildFile; fileRef = 53DD76BF0E12CB670026169A /* 12-6AM.png */; };
|
|
54
|
-
53DD76C40E12CB670026169A /* 6-12PM.png in Resources */ = {isa = PBXBuildFile; fileRef = 53DD76C00E12CB670026169A /* 6-12PM.png */; };
|
|
55
|
-
53DD76C50E12CB670026169A /* 6-12AM.png in Resources */ = {isa = PBXBuildFile; fileRef = 53DD76C10E12CB670026169A /* 6-12AM.png */; };
|
|
56
|
-
53DD76C60E12CB670026169A /* 12-6PM.png in Resources */ = {isa = PBXBuildFile; fileRef = 53DD76C20E12CB670026169A /* 12-6PM.png */; };
|
|
57
|
-
53FEDF120E805F93001CAA6B /* TextViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF100E805F93001CAA6B /* TextViewController.xib */; };
|
|
58
|
-
53FEDF330E806129001CAA6B /* SearchBarController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF310E806129001CAA6B /* SearchBarController.xib */; };
|
|
59
|
-
53FEDF460E8063FA001CAA6B /* ImagesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF440E8063FA001CAA6B /* ImagesViewController.xib */; };
|
|
60
|
-
53FEDF540E80649A001CAA6B /* WebViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF520E80649A001CAA6B /* WebViewController.xib */; };
|
|
61
|
-
53FEDF640E806525001CAA6B /* SegmentViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF620E806525001CAA6B /* SegmentViewController.xib */; };
|
|
62
|
-
53FEDF700E8065BF001CAA6B /* ToolbarViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF6E0E8065BF001CAA6B /* ToolbarViewController.xib */; };
|
|
63
|
-
53FEDF7C0E80670E001CAA6B /* AlertsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF7A0E80670E001CAA6B /* AlertsViewController.xib */; };
|
|
64
|
-
53FEDF930E8067FD001CAA6B /* TransitionViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 53FEDF910E8067FD001CAA6B /* TransitionViewController.xib */; };
|
|
65
|
-
/* End PBXBuildFile section */
|
|
66
|
-
|
|
67
|
-
/* Begin PBXFileReference section */
|
|
68
|
-
1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
|
69
|
-
1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
|
70
|
-
1D6058910D05DD3D006BFB54 /* UICatalog.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UICatalog.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
71
|
-
1DC4B2650D05D9C8003A8154 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
|
|
72
|
-
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
|
73
|
-
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
|
74
|
-
5309867F0DE753E300CC7C10 /* blueButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = blueButton.png; sourceTree = "<group>"; };
|
|
75
|
-
5316140D0DDCC3480085B0B5 /* TransitionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TransitionViewController.m; sourceTree = "<group>"; };
|
|
76
|
-
5316140E0DDCC3480085B0B5 /* TransitionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransitionViewController.h; sourceTree = "<group>"; };
|
|
77
|
-
531992A40DCBAE7300530CD7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainWindow.xib; sourceTree = "<group>"; };
|
|
78
|
-
531992A60DCBAE7300530CD7 /* en */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
|
|
79
|
-
533959C80DB800E8004A17CB /* ReadMe.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReadMe.txt; sourceTree = "<group>"; };
|
|
80
|
-
5348C5BC0DB55CE800E8144A /* SearchBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchBarController.m; sourceTree = "<group>"; };
|
|
81
|
-
5348C5BD0DB55CE800E8144A /* SearchBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchBarController.h; sourceTree = "<group>"; };
|
|
82
|
-
534E452D0D65F9A800BDA07D /* AlertsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlertsViewController.m; sourceTree = "<group>"; };
|
|
83
|
-
534E452E0D65F9A800BDA07D /* AlertsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlertsViewController.h; sourceTree = "<group>"; };
|
|
84
|
-
535F14160D6CA6A600F72359 /* TextFieldController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextFieldController.m; sourceTree = "<group>"; };
|
|
85
|
-
535F14170D6CA6A600F72359 /* TextFieldController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextFieldController.h; sourceTree = "<group>"; };
|
|
86
|
-
535F6DAA0D709EC3004ACDF8 /* ButtonsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ButtonsViewController.m; sourceTree = "<group>"; };
|
|
87
|
-
536493E30D73B63F0048BD96 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
|
|
88
|
-
537E74AB0D78CBFE00FD5536 /* UIButton_custom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIButton_custom.png; sourceTree = "<group>"; };
|
|
89
|
-
537E84BC0E804F600029CFC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ButtonsViewController.xib; sourceTree = "<group>"; };
|
|
90
|
-
537E84F70E8050F00029CFC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ControlsViewController.xib; sourceTree = "<group>"; };
|
|
91
|
-
537E85180E8052950029CFC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/TextFieldController.xib; sourceTree = "<group>"; };
|
|
92
|
-
53806CEF0DAC02D400A7C7C9 /* ToolbarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolbarViewController.m; sourceTree = "<group>"; };
|
|
93
|
-
53806CF00DAC02D400A7C7C9 /* ToolbarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolbarViewController.h; sourceTree = "<group>"; };
|
|
94
|
-
538EC3630F9CFA1B0013D94D /* CustomPickerDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomPickerDataSource.h; path = Picker/CustomPickerDataSource.h; sourceTree = "<group>"; };
|
|
95
|
-
538EC3640F9CFA1B0013D94D /* CustomPickerDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomPickerDataSource.m; path = Picker/CustomPickerDataSource.m; sourceTree = "<group>"; };
|
|
96
|
-
539A106D0E799BC800459348 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/PickerViewController.xib; sourceTree = "<group>"; };
|
|
97
|
-
53B0D4BC0D6A01AF00B4067D /* SegmentViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SegmentViewController.h; sourceTree = "<group>"; };
|
|
98
|
-
53B0D4BD0D6A01AF00B4067D /* SegmentViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SegmentViewController.m; sourceTree = "<group>"; };
|
|
99
|
-
53C36F9E0D78679000E6AABE /* segment_tools.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = segment_tools.png; sourceTree = "<group>"; };
|
|
100
|
-
53C36F9F0D78679000E6AABE /* segment_search.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = segment_search.png; sourceTree = "<group>"; };
|
|
101
|
-
53C36FA00D78679000E6AABE /* segment_check.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = segment_check.png; sourceTree = "<group>"; };
|
|
102
|
-
53C36FCC0D786A6A00E6AABE /* slider_ball.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider_ball.png; sourceTree = "<group>"; };
|
|
103
|
-
53C36FCD0D786A6A00E6AABE /* yellowslide.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = yellowslide.png; sourceTree = "<group>"; };
|
|
104
|
-
53C36FCE0D786A6A00E6AABE /* orangeslide.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = orangeslide.png; sourceTree = "<group>"; };
|
|
105
|
-
53C370D10D787C5400E6AABE /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
|
|
106
|
-
53CFC0300D62587800422A0E /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = "<group>"; };
|
|
107
|
-
53CFC03D0D62589300422A0E /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
108
|
-
53CFC03E0D62589300422A0E /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
109
|
-
53CFC0400D6258A300422A0E /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebViewController.m; sourceTree = "<group>"; };
|
|
110
|
-
53CFC0410D6258A300422A0E /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebViewController.h; sourceTree = "<group>"; };
|
|
111
|
-
53CFC0420D6258A300422A0E /* TextViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextViewController.m; sourceTree = "<group>"; };
|
|
112
|
-
53CFC0430D6258A300422A0E /* TextViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextViewController.h; sourceTree = "<group>"; };
|
|
113
|
-
53CFC0440D6258A300422A0E /* PickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PickerViewController.m; sourceTree = "<group>"; };
|
|
114
|
-
53CFC0450D6258A300422A0E /* PickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PickerViewController.h; sourceTree = "<group>"; };
|
|
115
|
-
53CFC0460D6258A300422A0E /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
|
|
116
|
-
53CFC0470D6258A300422A0E /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
|
|
117
|
-
53CFC0480D6258A300422A0E /* ImagesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImagesViewController.m; sourceTree = "<group>"; };
|
|
118
|
-
53CFC0490D6258A300422A0E /* ImagesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImagesViewController.h; sourceTree = "<group>"; };
|
|
119
|
-
53CFC04A0D6258A300422A0E /* ControlsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlsViewController.m; sourceTree = "<group>"; };
|
|
120
|
-
53CFC04B0D6258A300422A0E /* ControlsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlsViewController.h; sourceTree = "<group>"; };
|
|
121
|
-
53CFC04C0D6258A300422A0E /* Constants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Constants.h; sourceTree = "<group>"; };
|
|
122
|
-
53CFC04E0D6258A300422A0E /* ButtonsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ButtonsViewController.h; sourceTree = "<group>"; };
|
|
123
|
-
53CFC0750D62591400422A0E /* scene1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = scene1.jpg; sourceTree = "<group>"; };
|
|
124
|
-
53CFC0760D62591400422A0E /* scene2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = scene2.jpg; sourceTree = "<group>"; };
|
|
125
|
-
53CFC0770D62591400422A0E /* scene3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = scene3.jpg; sourceTree = "<group>"; };
|
|
126
|
-
53CFC0780D62591400422A0E /* scene4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = scene4.jpg; sourceTree = "<group>"; };
|
|
127
|
-
53CFC0790D62591400422A0E /* scene5.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = scene5.jpg; sourceTree = "<group>"; };
|
|
128
|
-
53CFC07B0D62591400422A0E /* whiteButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = whiteButton.png; sourceTree = "<group>"; };
|
|
129
|
-
53DD768B0E12CAAC0026169A /* CustomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomView.m; path = Picker/CustomView.m; sourceTree = "<group>"; };
|
|
130
|
-
53DD768D0E12CAAC0026169A /* CustomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomView.h; path = Picker/CustomView.h; sourceTree = "<group>"; };
|
|
131
|
-
53DD76BF0E12CB670026169A /* 12-6AM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "12-6AM.png"; sourceTree = "<group>"; };
|
|
132
|
-
53DD76C00E12CB670026169A /* 6-12PM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "6-12PM.png"; sourceTree = "<group>"; };
|
|
133
|
-
53DD76C10E12CB670026169A /* 6-12AM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "6-12AM.png"; sourceTree = "<group>"; };
|
|
134
|
-
53DD76C20E12CB670026169A /* 12-6PM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "12-6PM.png"; sourceTree = "<group>"; };
|
|
135
|
-
53FEDF110E805F93001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/TextViewController.xib; sourceTree = "<group>"; };
|
|
136
|
-
53FEDF320E806129001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/SearchBarController.xib; sourceTree = "<group>"; };
|
|
137
|
-
53FEDF450E8063FA001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ImagesViewController.xib; sourceTree = "<group>"; };
|
|
138
|
-
53FEDF530E80649A001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/WebViewController.xib; sourceTree = "<group>"; };
|
|
139
|
-
53FEDF630E806525001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/SegmentViewController.xib; sourceTree = "<group>"; };
|
|
140
|
-
53FEDF6F0E8065BF001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ToolbarViewController.xib; sourceTree = "<group>"; };
|
|
141
|
-
53FEDF7B0E80670E001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/AlertsViewController.xib; sourceTree = "<group>"; };
|
|
142
|
-
53FEDF920E8067FD001CAA6B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/TransitionViewController.xib; sourceTree = "<group>"; };
|
|
143
|
-
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
144
|
-
/* End PBXFileReference section */
|
|
145
|
-
|
|
146
|
-
/* Begin PBXFrameworksBuildPhase section */
|
|
147
|
-
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
|
|
148
|
-
isa = PBXFrameworksBuildPhase;
|
|
149
|
-
buildActionMask = 2147483647;
|
|
150
|
-
files = (
|
|
151
|
-
1D60589E0D05DD5A006BFB54 /* CoreFoundation.framework in Frameworks */,
|
|
152
|
-
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
|
|
153
|
-
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
|
|
154
|
-
1D3623EC0D0F72F000981E51 /* CoreGraphics.framework in Frameworks */,
|
|
155
|
-
);
|
|
156
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
157
|
-
};
|
|
158
|
-
/* End PBXFrameworksBuildPhase section */
|
|
159
|
-
|
|
160
|
-
/* Begin PBXGroup section */
|
|
161
|
-
19C28FACFE9D520D11CA2CBB /* Products */ = {
|
|
162
|
-
isa = PBXGroup;
|
|
163
|
-
children = (
|
|
164
|
-
1D6058910D05DD3D006BFB54 /* UICatalog.app */,
|
|
165
|
-
);
|
|
166
|
-
name = Products;
|
|
167
|
-
sourceTree = "<group>";
|
|
168
|
-
};
|
|
169
|
-
29B97314FDCFA39411CA2CEA /* Toolbar */ = {
|
|
170
|
-
isa = PBXGroup;
|
|
171
|
-
children = (
|
|
172
|
-
533959C80DB800E8004A17CB /* ReadMe.txt */,
|
|
173
|
-
29B97315FDCFA39411CA2CEA /* Sources */,
|
|
174
|
-
53CFC06A0D62591400422A0E /* images */,
|
|
175
|
-
29B97317FDCFA39411CA2CEA /* Resources */,
|
|
176
|
-
29B97323FDCFA39411CA2CEA /* Frameworks */,
|
|
177
|
-
19C28FACFE9D520D11CA2CBB /* Products */,
|
|
178
|
-
);
|
|
179
|
-
name = Toolbar;
|
|
180
|
-
sourceTree = "<group>";
|
|
181
|
-
};
|
|
182
|
-
29B97315FDCFA39411CA2CEA /* Sources */ = {
|
|
183
|
-
isa = PBXGroup;
|
|
184
|
-
children = (
|
|
185
|
-
53CFC0300D62587800422A0E /* Prefix.pch */,
|
|
186
|
-
53CFC04C0D6258A300422A0E /* Constants.h */,
|
|
187
|
-
29B97316FDCFA39411CA2CEA /* main.m */,
|
|
188
|
-
53CFC03E0D62589300422A0E /* AppDelegate.h */,
|
|
189
|
-
53CFC03D0D62589300422A0E /* AppDelegate.m */,
|
|
190
|
-
5303E5CF0D6B54CE00549676 /* Picker */,
|
|
191
|
-
53BDC1330D625A6E00B3DCEB /* ViewControllers */,
|
|
192
|
-
);
|
|
193
|
-
name = Sources;
|
|
194
|
-
sourceTree = "<group>";
|
|
195
|
-
};
|
|
196
|
-
29B97317FDCFA39411CA2CEA /* Resources */ = {
|
|
197
|
-
isa = PBXGroup;
|
|
198
|
-
children = (
|
|
199
|
-
531992A30DCBAE7300530CD7 /* MainWindow.xib */,
|
|
200
|
-
537E84BB0E804F600029CFC7 /* ButtonsViewController.xib */,
|
|
201
|
-
537E84F60E8050F00029CFC7 /* ControlsViewController.xib */,
|
|
202
|
-
537E85170E8052950029CFC7 /* TextFieldController.xib */,
|
|
203
|
-
53FEDF310E806129001CAA6B /* SearchBarController.xib */,
|
|
204
|
-
53FEDF100E805F93001CAA6B /* TextViewController.xib */,
|
|
205
|
-
539A106C0E799BC800459348 /* PickerViewController.xib */,
|
|
206
|
-
53FEDF440E8063FA001CAA6B /* ImagesViewController.xib */,
|
|
207
|
-
53FEDF520E80649A001CAA6B /* WebViewController.xib */,
|
|
208
|
-
53FEDF620E806525001CAA6B /* SegmentViewController.xib */,
|
|
209
|
-
53FEDF6E0E8065BF001CAA6B /* ToolbarViewController.xib */,
|
|
210
|
-
53FEDF7A0E80670E001CAA6B /* AlertsViewController.xib */,
|
|
211
|
-
53FEDF910E8067FD001CAA6B /* TransitionViewController.xib */,
|
|
212
|
-
531992A50DCBAE7300530CD7 /* Localizable.strings */,
|
|
213
|
-
8D1107310486CEB800E47090 /* Info.plist */,
|
|
214
|
-
);
|
|
215
|
-
name = Resources;
|
|
216
|
-
sourceTree = "<group>";
|
|
217
|
-
};
|
|
218
|
-
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
|
|
219
|
-
isa = PBXGroup;
|
|
220
|
-
children = (
|
|
221
|
-
1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */,
|
|
222
|
-
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
|
|
223
|
-
1DC4B2650D05D9C8003A8154 /* CoreFoundation.framework */,
|
|
224
|
-
1D30AB110D05D00D00671497 /* Foundation.framework */,
|
|
225
|
-
);
|
|
226
|
-
name = Frameworks;
|
|
227
|
-
sourceTree = "<group>";
|
|
228
|
-
};
|
|
229
|
-
5303E5CF0D6B54CE00549676 /* Picker */ = {
|
|
230
|
-
isa = PBXGroup;
|
|
231
|
-
children = (
|
|
232
|
-
53DD768D0E12CAAC0026169A /* CustomView.h */,
|
|
233
|
-
53DD768B0E12CAAC0026169A /* CustomView.m */,
|
|
234
|
-
538EC3630F9CFA1B0013D94D /* CustomPickerDataSource.h */,
|
|
235
|
-
538EC3640F9CFA1B0013D94D /* CustomPickerDataSource.m */,
|
|
236
|
-
);
|
|
237
|
-
name = Picker;
|
|
238
|
-
sourceTree = "<group>";
|
|
239
|
-
};
|
|
240
|
-
53BDC1330D625A6E00B3DCEB /* ViewControllers */ = {
|
|
241
|
-
isa = PBXGroup;
|
|
242
|
-
children = (
|
|
243
|
-
53CFC0470D6258A300422A0E /* MainViewController.h */,
|
|
244
|
-
53CFC0460D6258A300422A0E /* MainViewController.m */,
|
|
245
|
-
53CFC04B0D6258A300422A0E /* ControlsViewController.h */,
|
|
246
|
-
53CFC04A0D6258A300422A0E /* ControlsViewController.m */,
|
|
247
|
-
53CFC04E0D6258A300422A0E /* ButtonsViewController.h */,
|
|
248
|
-
535F6DAA0D709EC3004ACDF8 /* ButtonsViewController.m */,
|
|
249
|
-
53CFC0450D6258A300422A0E /* PickerViewController.h */,
|
|
250
|
-
53CFC0440D6258A300422A0E /* PickerViewController.m */,
|
|
251
|
-
535F14170D6CA6A600F72359 /* TextFieldController.h */,
|
|
252
|
-
535F14160D6CA6A600F72359 /* TextFieldController.m */,
|
|
253
|
-
5348C5BD0DB55CE800E8144A /* SearchBarController.h */,
|
|
254
|
-
5348C5BC0DB55CE800E8144A /* SearchBarController.m */,
|
|
255
|
-
53CFC0430D6258A300422A0E /* TextViewController.h */,
|
|
256
|
-
53CFC0420D6258A300422A0E /* TextViewController.m */,
|
|
257
|
-
53CFC0490D6258A300422A0E /* ImagesViewController.h */,
|
|
258
|
-
53CFC0480D6258A300422A0E /* ImagesViewController.m */,
|
|
259
|
-
53CFC0410D6258A300422A0E /* WebViewController.h */,
|
|
260
|
-
53CFC0400D6258A300422A0E /* WebViewController.m */,
|
|
261
|
-
53B0D4BC0D6A01AF00B4067D /* SegmentViewController.h */,
|
|
262
|
-
53B0D4BD0D6A01AF00B4067D /* SegmentViewController.m */,
|
|
263
|
-
53806CF00DAC02D400A7C7C9 /* ToolbarViewController.h */,
|
|
264
|
-
53806CEF0DAC02D400A7C7C9 /* ToolbarViewController.m */,
|
|
265
|
-
534E452E0D65F9A800BDA07D /* AlertsViewController.h */,
|
|
266
|
-
534E452D0D65F9A800BDA07D /* AlertsViewController.m */,
|
|
267
|
-
5316140E0DDCC3480085B0B5 /* TransitionViewController.h */,
|
|
268
|
-
5316140D0DDCC3480085B0B5 /* TransitionViewController.m */,
|
|
269
|
-
);
|
|
270
|
-
name = ViewControllers;
|
|
271
|
-
sourceTree = "<group>";
|
|
272
|
-
};
|
|
273
|
-
53CFC06A0D62591400422A0E /* images */ = {
|
|
274
|
-
isa = PBXGroup;
|
|
275
|
-
children = (
|
|
276
|
-
53DD76BF0E12CB670026169A /* 12-6AM.png */,
|
|
277
|
-
53DD76C00E12CB670026169A /* 6-12PM.png */,
|
|
278
|
-
53DD76C10E12CB670026169A /* 6-12AM.png */,
|
|
279
|
-
53DD76C20E12CB670026169A /* 12-6PM.png */,
|
|
280
|
-
537E74AB0D78CBFE00FD5536 /* UIButton_custom.png */,
|
|
281
|
-
53C370D10D787C5400E6AABE /* Icon.png */,
|
|
282
|
-
53C36FCC0D786A6A00E6AABE /* slider_ball.png */,
|
|
283
|
-
53C36FCD0D786A6A00E6AABE /* yellowslide.png */,
|
|
284
|
-
53C36FCE0D786A6A00E6AABE /* orangeslide.png */,
|
|
285
|
-
53C36F9E0D78679000E6AABE /* segment_tools.png */,
|
|
286
|
-
53C36F9F0D78679000E6AABE /* segment_search.png */,
|
|
287
|
-
53C36FA00D78679000E6AABE /* segment_check.png */,
|
|
288
|
-
536493E30D73B63F0048BD96 /* Default.png */,
|
|
289
|
-
53CFC0750D62591400422A0E /* scene1.jpg */,
|
|
290
|
-
53CFC0760D62591400422A0E /* scene2.jpg */,
|
|
291
|
-
53CFC0770D62591400422A0E /* scene3.jpg */,
|
|
292
|
-
53CFC0780D62591400422A0E /* scene4.jpg */,
|
|
293
|
-
53CFC0790D62591400422A0E /* scene5.jpg */,
|
|
294
|
-
53CFC07B0D62591400422A0E /* whiteButton.png */,
|
|
295
|
-
5309867F0DE753E300CC7C10 /* blueButton.png */,
|
|
296
|
-
);
|
|
297
|
-
path = images;
|
|
298
|
-
sourceTree = "<group>";
|
|
299
|
-
};
|
|
300
|
-
/* End PBXGroup section */
|
|
301
|
-
|
|
302
|
-
/* Begin PBXNativeTarget section */
|
|
303
|
-
1D6058900D05DD3D006BFB54 /* UICatalog */ = {
|
|
304
|
-
isa = PBXNativeTarget;
|
|
305
|
-
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "UICatalog" */;
|
|
306
|
-
buildPhases = (
|
|
307
|
-
1D60588D0D05DD3D006BFB54 /* Resources */,
|
|
308
|
-
1D60588E0D05DD3D006BFB54 /* Sources */,
|
|
309
|
-
1D60588F0D05DD3D006BFB54 /* Frameworks */,
|
|
310
|
-
);
|
|
311
|
-
buildRules = (
|
|
312
|
-
);
|
|
313
|
-
dependencies = (
|
|
314
|
-
);
|
|
315
|
-
name = UICatalog;
|
|
316
|
-
productName = foo;
|
|
317
|
-
productReference = 1D6058910D05DD3D006BFB54 /* UICatalog.app */;
|
|
318
|
-
productType = "com.apple.product-type.application";
|
|
319
|
-
};
|
|
320
|
-
/* End PBXNativeTarget section */
|
|
321
|
-
|
|
322
|
-
/* Begin PBXProject section */
|
|
323
|
-
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
|
324
|
-
isa = PBXProject;
|
|
325
|
-
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "UICatalog" */;
|
|
326
|
-
compatibilityVersion = "Xcode 3.1";
|
|
327
|
-
hasScannedForEncodings = 1;
|
|
328
|
-
knownRegions = (
|
|
329
|
-
English,
|
|
330
|
-
Japanese,
|
|
331
|
-
French,
|
|
332
|
-
German,
|
|
333
|
-
en,
|
|
334
|
-
);
|
|
335
|
-
mainGroup = 29B97314FDCFA39411CA2CEA /* Toolbar */;
|
|
336
|
-
projectDirPath = "";
|
|
337
|
-
projectRoot = "";
|
|
338
|
-
targets = (
|
|
339
|
-
1D6058900D05DD3D006BFB54 /* UICatalog */,
|
|
340
|
-
);
|
|
341
|
-
};
|
|
342
|
-
/* End PBXProject section */
|
|
343
|
-
|
|
344
|
-
/* Begin PBXResourcesBuildPhase section */
|
|
345
|
-
1D60588D0D05DD3D006BFB54 /* Resources */ = {
|
|
346
|
-
isa = PBXResourcesBuildPhase;
|
|
347
|
-
buildActionMask = 2147483647;
|
|
348
|
-
files = (
|
|
349
|
-
53CFC0860D62591400422A0E /* scene1.jpg in Resources */,
|
|
350
|
-
53CFC0870D62591400422A0E /* scene2.jpg in Resources */,
|
|
351
|
-
53CFC0880D62591400422A0E /* scene3.jpg in Resources */,
|
|
352
|
-
53CFC0890D62591400422A0E /* scene4.jpg in Resources */,
|
|
353
|
-
53CFC08A0D62591400422A0E /* scene5.jpg in Resources */,
|
|
354
|
-
53CFC08C0D62591400422A0E /* whiteButton.png in Resources */,
|
|
355
|
-
536493E40D73B63F0048BD96 /* Default.png in Resources */,
|
|
356
|
-
53C36FA10D78679000E6AABE /* segment_tools.png in Resources */,
|
|
357
|
-
53C36FA20D78679000E6AABE /* segment_search.png in Resources */,
|
|
358
|
-
53C36FA30D78679000E6AABE /* segment_check.png in Resources */,
|
|
359
|
-
53C36FCF0D786A6A00E6AABE /* slider_ball.png in Resources */,
|
|
360
|
-
53C36FD00D786A6A00E6AABE /* yellowslide.png in Resources */,
|
|
361
|
-
53C36FD10D786A6A00E6AABE /* orangeslide.png in Resources */,
|
|
362
|
-
53C370D20D787C5400E6AABE /* Icon.png in Resources */,
|
|
363
|
-
537E74AC0D78CBFE00FD5536 /* UIButton_custom.png in Resources */,
|
|
364
|
-
531992A70DCBAE7300530CD7 /* MainWindow.xib in Resources */,
|
|
365
|
-
531992A80DCBAE7300530CD7 /* Localizable.strings in Resources */,
|
|
366
|
-
530986800DE753E300CC7C10 /* blueButton.png in Resources */,
|
|
367
|
-
53DD76C30E12CB670026169A /* 12-6AM.png in Resources */,
|
|
368
|
-
53DD76C40E12CB670026169A /* 6-12PM.png in Resources */,
|
|
369
|
-
53DD76C50E12CB670026169A /* 6-12AM.png in Resources */,
|
|
370
|
-
53DD76C60E12CB670026169A /* 12-6PM.png in Resources */,
|
|
371
|
-
539A106E0E799BC800459348 /* PickerViewController.xib in Resources */,
|
|
372
|
-
537E84BD0E804F600029CFC7 /* ButtonsViewController.xib in Resources */,
|
|
373
|
-
537E84F80E8050F00029CFC7 /* ControlsViewController.xib in Resources */,
|
|
374
|
-
537E85190E8052950029CFC7 /* TextFieldController.xib in Resources */,
|
|
375
|
-
53FEDF120E805F93001CAA6B /* TextViewController.xib in Resources */,
|
|
376
|
-
53FEDF330E806129001CAA6B /* SearchBarController.xib in Resources */,
|
|
377
|
-
53FEDF460E8063FA001CAA6B /* ImagesViewController.xib in Resources */,
|
|
378
|
-
53FEDF540E80649A001CAA6B /* WebViewController.xib in Resources */,
|
|
379
|
-
53FEDF640E806525001CAA6B /* SegmentViewController.xib in Resources */,
|
|
380
|
-
53FEDF700E8065BF001CAA6B /* ToolbarViewController.xib in Resources */,
|
|
381
|
-
53FEDF7C0E80670E001CAA6B /* AlertsViewController.xib in Resources */,
|
|
382
|
-
53FEDF930E8067FD001CAA6B /* TransitionViewController.xib in Resources */,
|
|
383
|
-
);
|
|
384
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
385
|
-
};
|
|
386
|
-
/* End PBXResourcesBuildPhase section */
|
|
387
|
-
|
|
388
|
-
/* Begin PBXSourcesBuildPhase section */
|
|
389
|
-
1D60588E0D05DD3D006BFB54 /* Sources */ = {
|
|
390
|
-
isa = PBXSourcesBuildPhase;
|
|
391
|
-
buildActionMask = 2147483647;
|
|
392
|
-
files = (
|
|
393
|
-
1D60589B0D05DD56006BFB54 /* main.m in Sources */,
|
|
394
|
-
53CFC03F0D62589300422A0E /* AppDelegate.m in Sources */,
|
|
395
|
-
53CFC0510D6258A300422A0E /* WebViewController.m in Sources */,
|
|
396
|
-
53CFC0520D6258A300422A0E /* TextViewController.m in Sources */,
|
|
397
|
-
53CFC0530D6258A300422A0E /* PickerViewController.m in Sources */,
|
|
398
|
-
53CFC0540D6258A300422A0E /* MainViewController.m in Sources */,
|
|
399
|
-
53CFC0550D6258A300422A0E /* ImagesViewController.m in Sources */,
|
|
400
|
-
53CFC0560D6258A300422A0E /* ControlsViewController.m in Sources */,
|
|
401
|
-
534E452F0D65F9A800BDA07D /* AlertsViewController.m in Sources */,
|
|
402
|
-
53B0D4BE0D6A01AF00B4067D /* SegmentViewController.m in Sources */,
|
|
403
|
-
535F14180D6CA6A600F72359 /* TextFieldController.m in Sources */,
|
|
404
|
-
535F6DAB0D709EC3004ACDF8 /* ButtonsViewController.m in Sources */,
|
|
405
|
-
53806CF10DAC02D400A7C7C9 /* ToolbarViewController.m in Sources */,
|
|
406
|
-
5348C5BE0DB55CE800E8144A /* SearchBarController.m in Sources */,
|
|
407
|
-
5316140F0DDCC3480085B0B5 /* TransitionViewController.m in Sources */,
|
|
408
|
-
53DD768F0E12CAAC0026169A /* CustomView.m in Sources */,
|
|
409
|
-
538EC3650F9CFA1B0013D94D /* CustomPickerDataSource.m in Sources */,
|
|
410
|
-
);
|
|
411
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
412
|
-
};
|
|
413
|
-
/* End PBXSourcesBuildPhase section */
|
|
414
|
-
|
|
415
|
-
/* Begin PBXVariantGroup section */
|
|
416
|
-
531992A30DCBAE7300530CD7 /* MainWindow.xib */ = {
|
|
417
|
-
isa = PBXVariantGroup;
|
|
418
|
-
children = (
|
|
419
|
-
531992A40DCBAE7300530CD7 /* en */,
|
|
420
|
-
);
|
|
421
|
-
name = MainWindow.xib;
|
|
422
|
-
sourceTree = "<group>";
|
|
423
|
-
};
|
|
424
|
-
531992A50DCBAE7300530CD7 /* Localizable.strings */ = {
|
|
425
|
-
isa = PBXVariantGroup;
|
|
426
|
-
children = (
|
|
427
|
-
531992A60DCBAE7300530CD7 /* en */,
|
|
428
|
-
);
|
|
429
|
-
name = Localizable.strings;
|
|
430
|
-
sourceTree = "<group>";
|
|
431
|
-
};
|
|
432
|
-
537E84BB0E804F600029CFC7 /* ButtonsViewController.xib */ = {
|
|
433
|
-
isa = PBXVariantGroup;
|
|
434
|
-
children = (
|
|
435
|
-
537E84BC0E804F600029CFC7 /* en */,
|
|
436
|
-
);
|
|
437
|
-
name = ButtonsViewController.xib;
|
|
438
|
-
sourceTree = "<group>";
|
|
439
|
-
};
|
|
440
|
-
537E84F60E8050F00029CFC7 /* ControlsViewController.xib */ = {
|
|
441
|
-
isa = PBXVariantGroup;
|
|
442
|
-
children = (
|
|
443
|
-
537E84F70E8050F00029CFC7 /* en */,
|
|
444
|
-
);
|
|
445
|
-
name = ControlsViewController.xib;
|
|
446
|
-
sourceTree = "<group>";
|
|
447
|
-
};
|
|
448
|
-
537E85170E8052950029CFC7 /* TextFieldController.xib */ = {
|
|
449
|
-
isa = PBXVariantGroup;
|
|
450
|
-
children = (
|
|
451
|
-
537E85180E8052950029CFC7 /* en */,
|
|
452
|
-
);
|
|
453
|
-
name = TextFieldController.xib;
|
|
454
|
-
sourceTree = "<group>";
|
|
455
|
-
};
|
|
456
|
-
539A106C0E799BC800459348 /* PickerViewController.xib */ = {
|
|
457
|
-
isa = PBXVariantGroup;
|
|
458
|
-
children = (
|
|
459
|
-
539A106D0E799BC800459348 /* en */,
|
|
460
|
-
);
|
|
461
|
-
name = PickerViewController.xib;
|
|
462
|
-
sourceTree = "<group>";
|
|
463
|
-
};
|
|
464
|
-
53FEDF100E805F93001CAA6B /* TextViewController.xib */ = {
|
|
465
|
-
isa = PBXVariantGroup;
|
|
466
|
-
children = (
|
|
467
|
-
53FEDF110E805F93001CAA6B /* en */,
|
|
468
|
-
);
|
|
469
|
-
name = TextViewController.xib;
|
|
470
|
-
sourceTree = "<group>";
|
|
471
|
-
};
|
|
472
|
-
53FEDF310E806129001CAA6B /* SearchBarController.xib */ = {
|
|
473
|
-
isa = PBXVariantGroup;
|
|
474
|
-
children = (
|
|
475
|
-
53FEDF320E806129001CAA6B /* en */,
|
|
476
|
-
);
|
|
477
|
-
name = SearchBarController.xib;
|
|
478
|
-
sourceTree = "<group>";
|
|
479
|
-
};
|
|
480
|
-
53FEDF440E8063FA001CAA6B /* ImagesViewController.xib */ = {
|
|
481
|
-
isa = PBXVariantGroup;
|
|
482
|
-
children = (
|
|
483
|
-
53FEDF450E8063FA001CAA6B /* en */,
|
|
484
|
-
);
|
|
485
|
-
name = ImagesViewController.xib;
|
|
486
|
-
sourceTree = "<group>";
|
|
487
|
-
};
|
|
488
|
-
53FEDF520E80649A001CAA6B /* WebViewController.xib */ = {
|
|
489
|
-
isa = PBXVariantGroup;
|
|
490
|
-
children = (
|
|
491
|
-
53FEDF530E80649A001CAA6B /* en */,
|
|
492
|
-
);
|
|
493
|
-
name = WebViewController.xib;
|
|
494
|
-
sourceTree = "<group>";
|
|
495
|
-
};
|
|
496
|
-
53FEDF620E806525001CAA6B /* SegmentViewController.xib */ = {
|
|
497
|
-
isa = PBXVariantGroup;
|
|
498
|
-
children = (
|
|
499
|
-
53FEDF630E806525001CAA6B /* en */,
|
|
500
|
-
);
|
|
501
|
-
name = SegmentViewController.xib;
|
|
502
|
-
sourceTree = "<group>";
|
|
503
|
-
};
|
|
504
|
-
53FEDF6E0E8065BF001CAA6B /* ToolbarViewController.xib */ = {
|
|
505
|
-
isa = PBXVariantGroup;
|
|
506
|
-
children = (
|
|
507
|
-
53FEDF6F0E8065BF001CAA6B /* en */,
|
|
508
|
-
);
|
|
509
|
-
name = ToolbarViewController.xib;
|
|
510
|
-
sourceTree = "<group>";
|
|
511
|
-
};
|
|
512
|
-
53FEDF7A0E80670E001CAA6B /* AlertsViewController.xib */ = {
|
|
513
|
-
isa = PBXVariantGroup;
|
|
514
|
-
children = (
|
|
515
|
-
53FEDF7B0E80670E001CAA6B /* en */,
|
|
516
|
-
);
|
|
517
|
-
name = AlertsViewController.xib;
|
|
518
|
-
sourceTree = "<group>";
|
|
519
|
-
};
|
|
520
|
-
53FEDF910E8067FD001CAA6B /* TransitionViewController.xib */ = {
|
|
521
|
-
isa = PBXVariantGroup;
|
|
522
|
-
children = (
|
|
523
|
-
53FEDF920E8067FD001CAA6B /* en */,
|
|
524
|
-
);
|
|
525
|
-
name = TransitionViewController.xib;
|
|
526
|
-
sourceTree = "<group>";
|
|
527
|
-
};
|
|
528
|
-
/* End PBXVariantGroup section */
|
|
529
|
-
|
|
530
|
-
/* Begin XCBuildConfiguration section */
|
|
531
|
-
1D6058940D05DD3E006BFB54 /* Debug */ = {
|
|
532
|
-
isa = XCBuildConfiguration;
|
|
533
|
-
buildSettings = {
|
|
534
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
535
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
536
|
-
COPY_PHASE_STRIP = NO;
|
|
537
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
538
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
539
|
-
GCC_ENABLE_FIX_AND_CONTINUE = NO;
|
|
540
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
541
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
542
|
-
GCC_PREFIX_HEADER = Prefix.pch;
|
|
543
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
544
|
-
GCC_WARN_UNUSED_VALUE = NO;
|
|
545
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
546
|
-
INFOPLIST_FILE = Info.plist;
|
|
547
|
-
PREBINDING = NO;
|
|
548
|
-
PRODUCT_NAME = UICatalog;
|
|
549
|
-
SDKROOT = iphoneos3.0;
|
|
550
|
-
};
|
|
551
|
-
name = Debug;
|
|
552
|
-
};
|
|
553
|
-
1D6058950D05DD3E006BFB54 /* Release */ = {
|
|
554
|
-
isa = XCBuildConfiguration;
|
|
555
|
-
buildSettings = {
|
|
556
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
557
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
558
|
-
COPY_PHASE_STRIP = YES;
|
|
559
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
560
|
-
GCC_ENABLE_FIX_AND_CONTINUE = NO;
|
|
561
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
562
|
-
GCC_PREFIX_HEADER = Prefix.pch;
|
|
563
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
564
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
565
|
-
INFOPLIST_FILE = Info.plist;
|
|
566
|
-
PREBINDING = NO;
|
|
567
|
-
PRODUCT_NAME = UICatalog;
|
|
568
|
-
SDKROOT = iphoneos3.0;
|
|
569
|
-
};
|
|
570
|
-
name = Release;
|
|
571
|
-
};
|
|
572
|
-
C01FCF4F08A954540054247B /* Debug */ = {
|
|
573
|
-
isa = XCBuildConfiguration;
|
|
574
|
-
buildSettings = {
|
|
575
|
-
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
|
576
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
577
|
-
PREBINDING = NO;
|
|
578
|
-
SDKROOT = iphoneos2.0;
|
|
579
|
-
};
|
|
580
|
-
name = Debug;
|
|
581
|
-
};
|
|
582
|
-
C01FCF5008A954540054247B /* Release */ = {
|
|
583
|
-
isa = XCBuildConfiguration;
|
|
584
|
-
buildSettings = {
|
|
585
|
-
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
|
586
|
-
PREBINDING = NO;
|
|
587
|
-
SDKROOT = iphoneos2.0;
|
|
588
|
-
};
|
|
589
|
-
name = Release;
|
|
590
|
-
};
|
|
591
|
-
/* End XCBuildConfiguration section */
|
|
592
|
-
|
|
593
|
-
/* Begin XCConfigurationList section */
|
|
594
|
-
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "UICatalog" */ = {
|
|
595
|
-
isa = XCConfigurationList;
|
|
596
|
-
buildConfigurations = (
|
|
597
|
-
1D6058940D05DD3E006BFB54 /* Debug */,
|
|
598
|
-
1D6058950D05DD3E006BFB54 /* Release */,
|
|
599
|
-
);
|
|
600
|
-
defaultConfigurationIsVisible = 0;
|
|
601
|
-
defaultConfigurationName = Release;
|
|
602
|
-
};
|
|
603
|
-
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "UICatalog" */ = {
|
|
604
|
-
isa = XCConfigurationList;
|
|
605
|
-
buildConfigurations = (
|
|
606
|
-
C01FCF4F08A954540054247B /* Debug */,
|
|
607
|
-
C01FCF5008A954540054247B /* Release */,
|
|
608
|
-
);
|
|
609
|
-
defaultConfigurationIsVisible = 0;
|
|
610
|
-
defaultConfigurationName = Release;
|
|
611
|
-
};
|
|
612
|
-
/* End XCConfigurationList section */
|
|
613
|
-
};
|
|
614
|
-
rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
|
|
615
|
-
}
|