Subversion Repository Public Repository

Nextrek

Diff Revisions 1144 vs 1145 for /iOS/Emmanuele Rossi/REWORKMostri/NewMostri.xcodeproj/project.pbxproj

Diff revisions: vs.
  @@ -25,6 +25,9 @@
25 25 C352A089231EAB19006A281E /* Info.m in Sources */ = {isa = PBXBuildFile; fileRef = C352A088231EAB19006A281E /* Info.m */; };
26 26 C36BC156231FE8AF00C7618C /* IndiceVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C36BC155231FE8AF00C7618C /* IndiceVC.m */; };
27 27 C36BC15A231FE91900C7618C /* IndiceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C36BC159231FE91900C7618C /* IndiceCell.m */; };
28 + C3A48E85232139AA004A0696 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3A48E84232139AA004A0696 /* CoreGraphics.framework */; };
29 + C3A8164623211E65009AC04C /* PersonaggiVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A8164523211E65009AC04C /* PersonaggiVC.m */; };
30 + C3A8164B23211FC0009AC04C /* CustomPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A8164A23211FC0009AC04C /* CustomPageControl.m */; };
28 31 /* End PBXBuildFile section */
29 32
30 33 /* Begin PBXFileReference section */
  @@ -58,6 +61,11 @@
58 61 C36BC155231FE8AF00C7618C /* IndiceVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndiceVC.m; sourceTree = "<group>"; };
59 62 C36BC158231FE90900C7618C /* IndiceCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IndiceCell.h; sourceTree = "<group>"; };
60 63 C36BC159231FE91900C7618C /* IndiceCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IndiceCell.m; sourceTree = "<group>"; };
64 + C3A48E84232139AA004A0696 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
65 + C3A8164423211E48009AC04C /* PersonaggiVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PersonaggiVC.h; sourceTree = "<group>"; };
66 + C3A8164523211E65009AC04C /* PersonaggiVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PersonaggiVC.m; sourceTree = "<group>"; };
67 + C3A8164923211FA9009AC04C /* CustomPageControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomPageControl.h; sourceTree = "<group>"; };
68 + C3A8164A23211FC0009AC04C /* CustomPageControl.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CustomPageControl.m; sourceTree = "<group>"; };
61 69 /* End PBXFileReference section */
62 70
63 71 /* Begin PBXFrameworksBuildPhase section */
  @@ -65,6 +73,7 @@
65 73 isa = PBXFrameworksBuildPhase;
66 74 buildActionMask = 2147483647;
67 75 files = (
76 + C3A48E85232139AA004A0696 /* CoreGraphics.framework in Frameworks */,
68 77 C352A084231E9979006A281E /* UIKit.framework in Frameworks */,
69 78 C352A082231E996E006A281E /* AVFoundation.framework in Frameworks */,
70 79 C352A080231E9961006A281E /* WebKit.framework in Frameworks */,
  @@ -98,6 +107,7 @@
98 107 C31D616F23194EB100BAF182 /* NewMostri */ = {
99 108 isa = PBXGroup;
100 109 children = (
110 + C3A8164723211F63009AC04C /* Utils */,
101 111 C31D6186231971C400BAF182 /* VC */,
102 112 C31D617023194EB100BAF182 /* AppDelegate.h */,
103 113 C31D617123194EB100BAF182 /* AppDelegate.m */,
  @@ -115,6 +125,7 @@
115 125 C31D6186231971C400BAF182 /* VC */ = {
116 126 isa = PBXGroup;
117 127 children = (
128 + C3A8164323211E2F009AC04C /* Personaggi */,
118 129 C36BC153231FE87D00C7618C /* Indice */,
119 130 C352A086231EAAF0006A281E /* Info */,
120 131 C352A076231E7324006A281E /* TerminiCondizioni */,
  @@ -163,6 +174,7 @@
163 174 C352A07E231E9960006A281E /* Frameworks */ = {
164 175 isa = PBXGroup;
165 176 children = (
177 + C3A48E84232139AA004A0696 /* CoreGraphics.framework */,
166 178 C352A083231E9979006A281E /* UIKit.framework */,
167 179 C352A081231E996D006A281E /* AVFoundation.framework */,
168 180 C352A07F231E9961006A281E /* WebKit.framework */,
  @@ -198,6 +210,32 @@
198 210 path = IndiceCell;
199 211 sourceTree = "<group>";
200 212 };
213 + C3A8164323211E2F009AC04C /* Personaggi */ = {
214 + isa = PBXGroup;
215 + children = (
216 + C3A8164423211E48009AC04C /* PersonaggiVC.h */,
217 + C3A8164523211E65009AC04C /* PersonaggiVC.m */,
218 + );
219 + path = Personaggi;
220 + sourceTree = "<group>";
221 + };
222 + C3A8164723211F63009AC04C /* Utils */ = {
223 + isa = PBXGroup;
224 + children = (
225 + C3A8164823211F6F009AC04C /* UIComponents */,
226 + );
227 + path = Utils;
228 + sourceTree = "<group>";
229 + };
230 + C3A8164823211F6F009AC04C /* UIComponents */ = {
231 + isa = PBXGroup;
232 + children = (
233 + C3A8164923211FA9009AC04C /* CustomPageControl.h */,
234 + C3A8164A23211FC0009AC04C /* CustomPageControl.m */,
235 + );
236 + path = UIComponents;
237 + sourceTree = "<group>";
238 + };
201 239 /* End PBXGroup section */
202 240
203 241 /* Begin PBXNativeTarget section */
  @@ -270,6 +308,7 @@
270 308 isa = PBXSourcesBuildPhase;
271 309 buildActionMask = 2147483647;
272 310 files = (
311 + C3A8164623211E65009AC04C /* PersonaggiVC.m in Sources */,
273 312 C31D617523194EB100BAF182 /* ViewController.m in Sources */,
274 313 C352A071231E6014006A281E /* DataManager.m in Sources */,
275 314 C352A075231E68D5006A281E /* MenuCell.m in Sources */,
  @@ -280,6 +319,7 @@
280 319 C36BC15A231FE91900C7618C /* IndiceCell.m in Sources */,
281 320 C31D618023194EB200BAF182 /* main.m in Sources */,
282 321 C31D617223194EB100BAF182 /* AppDelegate.m in Sources */,
322 + C3A8164B23211FC0009AC04C /* CustomPageControl.m in Sources */,
283 323 );
284 324 runOnlyForDeploymentPostprocessing = 0;
285 325 };