Initial commit
Seto Elkahfi committed
Mar 27, 2017 at 17:34 UTC
1622a52e8e0ec738eec95db6d42e9401b83994fe
21 files changed
+1128
.gitignore
new
+33
@@ -0,0 +1,33 @@
1
+# OS X
2
+.DS_Store
3
+
4
+# Xcode
5
+build/
6
+*.pbxuser
7
+!default.pbxuser
8
+*.mode1v3
9
+!default.mode1v3
10
+*.mode2v3
11
+!default.mode2v3
12
+*.perspectivev3
13
+!default.perspectivev3
14
+xcuserdata/
15
+*.xccheckout
16
+profile
17
+*.moved-aside
18
+DerivedData
19
+*.hmap
20
+*.ipa
21
+
22
+# Bundler
23
+.bundle
24
+
25
+Carthage
26
+# We recommend against adding the Pods directory to your .gitignore. However
27
+# you should judge for yourself, the pros and cons are mentioned at:
28
+# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
29
+#
30
+# Note: if you ignore the Pods directory, make sure to uncomment
31
+# `pod install` in .travis.yml
32
+#
33
+# Pods/
.travis.yml
new
+14
@@ -0,0 +1,14 @@
1
+# references:
2
+# * http://www.objc.io/issue-6/travis-ci.html
3
+# * https://github.com/supermarin/xcpretty#usage
4
+
5
+osx_image: xcode7.3
6
+language: objective-c
7
+# cache: cocoapods
8
+# podfile: Example/Podfile
9
+# before_install:
10
+# - gem install cocoapods # Since Travis is not always on latest version
11
+# - pod install --project-directory=Example
12
+script:
13
+- set -o pipefail && xcodebuild test -workspace Example/JomloTableView.xcworkspace -scheme JomloTableView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14
+- pod lib lint
Example/JomloTableView.xcodeproj/project.pbxproj
new
+591
@@ -0,0 +1,591 @@
1
+// !$*UTF8*$!
2
+{
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+/* Begin PBXBuildFile section */
10
+ 1C9CE5D04F717B03816A125B /* Pods_JomloTableView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A33E5FF3CCC9BDCBA18C58F /* Pods_JomloTableView_Tests.framework */; };
11
+ 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
12
+ 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };
13
+ 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };
14
+ 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
15
+ 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
16
+ 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
17
+ 84CBD496B3AF199DDDFABEA5 /* Pods_JomloTableView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02771B90736B785DC8EEE580 /* Pods_JomloTableView_Example.framework */; };
18
+/* End PBXBuildFile section */
19
+
20
+/* Begin PBXContainerItemProxy section */
21
+ 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {
22
+ isa = PBXContainerItemProxy;
23
+ containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
24
+ proxyType = 1;
25
+ remoteGlobalIDString = 607FACCF1AFB9204008FA782;
26
+ remoteInfo = JomloTableView;
27
+ };
28
+/* End PBXContainerItemProxy section */
29
+
30
+/* Begin PBXFileReference section */
31
+ 02771B90736B785DC8EEE580 /* Pods_JomloTableView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JomloTableView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
32
+ 044CF1D5E803D7F3DBAD2530 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
33
+ 1DF5A127CF52147610B75ADE /* Pods-JomloTableView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JomloTableView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-JomloTableView_Example/Pods-JomloTableView_Example.debug.xcconfig"; sourceTree = "<group>"; };
34
+ 607FACD01AFB9204008FA782 /* JomloTableView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JomloTableView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
35
+ 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
36
+ 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
37
+ 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
38
+ 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
39
+ 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
40
+ 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
41
+ 607FACE51AFB9204008FA782 /* JomloTableView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JomloTableView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
42
+ 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
43
+ 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
44
+ 9A33E5FF3CCC9BDCBA18C58F /* Pods_JomloTableView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JomloTableView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
45
+ B02AFC91A81D2EBF28A0B26F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
46
+ B828666E6D8F9450941A36AB /* Pods-JomloTableView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JomloTableView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-JomloTableView_Example/Pods-JomloTableView_Example.release.xcconfig"; sourceTree = "<group>"; };
47
+ BAB533BC282592A3CAD7E959 /* JomloTableView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = JomloTableView.podspec; path = ../JomloTableView.podspec; sourceTree = "<group>"; };
48
+ D67A39B8BF2D4AB708B1879B /* Pods-JomloTableView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JomloTableView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-JomloTableView_Tests/Pods-JomloTableView_Tests.release.xcconfig"; sourceTree = "<group>"; };
49
+ E555BEE30E2659F27C50D6B8 /* Pods-JomloTableView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JomloTableView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-JomloTableView_Tests/Pods-JomloTableView_Tests.debug.xcconfig"; sourceTree = "<group>"; };
50
+/* End PBXFileReference section */
51
+
52
+/* Begin PBXFrameworksBuildPhase section */
53
+ 607FACCD1AFB9204008FA782 /* Frameworks */ = {
54
+ isa = PBXFrameworksBuildPhase;
55
+ buildActionMask = 2147483647;
56
+ files = (
57
+ 84CBD496B3AF199DDDFABEA5 /* Pods_JomloTableView_Example.framework in Frameworks */,
58
+ );
59
+ runOnlyForDeploymentPostprocessing = 0;
60
+ };
61
+ 607FACE21AFB9204008FA782 /* Frameworks */ = {
62
+ isa = PBXFrameworksBuildPhase;
63
+ buildActionMask = 2147483647;
64
+ files = (
65
+ 1C9CE5D04F717B03816A125B /* Pods_JomloTableView_Tests.framework in Frameworks */,
66
+ );
67
+ runOnlyForDeploymentPostprocessing = 0;
68
+ };
69
+/* End PBXFrameworksBuildPhase section */
70
+
71
+/* Begin PBXGroup section */
72
+ 607FACC71AFB9204008FA782 = {
73
+ isa = PBXGroup;
74
+ children = (
75
+ 607FACF51AFB993E008FA782 /* Podspec Metadata */,
76
+ 607FACD21AFB9204008FA782 /* Example for JomloTableView */,
77
+ 607FACE81AFB9204008FA782 /* Tests */,
78
+ 607FACD11AFB9204008FA782 /* Products */,
79
+ EA9D652A245DCEF437D7776E /* Pods */,
80
+ D468E008AD7F9DA36A194707 /* Frameworks */,
81
+ );
82
+ sourceTree = "<group>";
83
+ };
84
+ 607FACD11AFB9204008FA782 /* Products */ = {
85
+ isa = PBXGroup;
86
+ children = (
87
+ 607FACD01AFB9204008FA782 /* JomloTableView_Example.app */,
88
+ 607FACE51AFB9204008FA782 /* JomloTableView_Tests.xctest */,
89
+ );
90
+ name = Products;
91
+ sourceTree = "<group>";
92
+ };
93
+ 607FACD21AFB9204008FA782 /* Example for JomloTableView */ = {
94
+ isa = PBXGroup;
95
+ children = (
96
+ 607FACD51AFB9204008FA782 /* AppDelegate.swift */,
97
+ 607FACD71AFB9204008FA782 /* ViewController.swift */,
98
+ 607FACD91AFB9204008FA782 /* Main.storyboard */,
99
+ 607FACDC1AFB9204008FA782 /* Images.xcassets */,
100
+ 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
101
+ 607FACD31AFB9204008FA782 /* Supporting Files */,
102
+ );
103
+ name = "Example for JomloTableView";
104
+ path = JomloTableView;
105
+ sourceTree = "<group>";
106
+ };
107
+ 607FACD31AFB9204008FA782 /* Supporting Files */ = {
108
+ isa = PBXGroup;
109
+ children = (
110
+ 607FACD41AFB9204008FA782 /* Info.plist */,
111
+ );
112
+ name = "Supporting Files";
113
+ sourceTree = "<group>";
114
+ };
115
+ 607FACE81AFB9204008FA782 /* Tests */ = {
116
+ isa = PBXGroup;
117
+ children = (
118
+ 607FACEB1AFB9204008FA782 /* Tests.swift */,
119
+ 607FACE91AFB9204008FA782 /* Supporting Files */,
120
+ );
121
+ path = Tests;
122
+ sourceTree = "<group>";
123
+ };
124
+ 607FACE91AFB9204008FA782 /* Supporting Files */ = {
125
+ isa = PBXGroup;
126
+ children = (
127
+ 607FACEA1AFB9204008FA782 /* Info.plist */,
128
+ );
129
+ name = "Supporting Files";
130
+ sourceTree = "<group>";
131
+ };
132
+ 607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
133
+ isa = PBXGroup;
134
+ children = (
135
+ BAB533BC282592A3CAD7E959 /* JomloTableView.podspec */,
136
+ 044CF1D5E803D7F3DBAD2530 /* README.md */,
137
+ B02AFC91A81D2EBF28A0B26F /* LICENSE */,
138
+ );
139
+ name = "Podspec Metadata";
140
+ sourceTree = "<group>";
141
+ };
142
+ D468E008AD7F9DA36A194707 /* Frameworks */ = {
143
+ isa = PBXGroup;
144
+ children = (
145
+ 02771B90736B785DC8EEE580 /* Pods_JomloTableView_Example.framework */,
146
+ 9A33E5FF3CCC9BDCBA18C58F /* Pods_JomloTableView_Tests.framework */,
147
+ );
148
+ name = Frameworks;
149
+ sourceTree = "<group>";
150
+ };
151
+ EA9D652A245DCEF437D7776E /* Pods */ = {
152
+ isa = PBXGroup;
153
+ children = (
154
+ 1DF5A127CF52147610B75ADE /* Pods-JomloTableView_Example.debug.xcconfig */,
155
+ B828666E6D8F9450941A36AB /* Pods-JomloTableView_Example.release.xcconfig */,
156
+ E555BEE30E2659F27C50D6B8 /* Pods-JomloTableView_Tests.debug.xcconfig */,
157
+ D67A39B8BF2D4AB708B1879B /* Pods-JomloTableView_Tests.release.xcconfig */,
158
+ );
159
+ name = Pods;
160
+ sourceTree = "<group>";
161
+ };
162
+/* End PBXGroup section */
163
+
164
+/* Begin PBXNativeTarget section */
165
+ 607FACCF1AFB9204008FA782 /* JomloTableView_Example */ = {
166
+ isa = PBXNativeTarget;
167
+ buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JomloTableView_Example" */;
168
+ buildPhases = (
169
+ 725C4CA07BB62B6C4EFA55C9 /* [CP] Check Pods Manifest.lock */,
170
+ 607FACCC1AFB9204008FA782 /* Sources */,
171
+ 607FACCD1AFB9204008FA782 /* Frameworks */,
172
+ 607FACCE1AFB9204008FA782 /* Resources */,
173
+ 933778CD77AAA6FBCC6DE9AD /* [CP] Embed Pods Frameworks */,
174
+ 61EB6C4B3579114D65EF8E42 /* [CP] Copy Pods Resources */,
175
+ );
176
+ buildRules = (
177
+ );
178
+ dependencies = (
179
+ );
180
+ name = JomloTableView_Example;
181
+ productName = JomloTableView;
182
+ productReference = 607FACD01AFB9204008FA782 /* JomloTableView_Example.app */;
183
+ productType = "com.apple.product-type.application";
184
+ };
185
+ 607FACE41AFB9204008FA782 /* JomloTableView_Tests */ = {
186
+ isa = PBXNativeTarget;
187
+ buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JomloTableView_Tests" */;
188
+ buildPhases = (
189
+ C0D220C7F6C5C2E558EC4C2A /* [CP] Check Pods Manifest.lock */,
190
+ 607FACE11AFB9204008FA782 /* Sources */,
191
+ 607FACE21AFB9204008FA782 /* Frameworks */,
192
+ 607FACE31AFB9204008FA782 /* Resources */,
193
+ 2D444412411209A719A505D4 /* [CP] Embed Pods Frameworks */,
194
+ 842C75DACF091DA4CDAD1B56 /* [CP] Copy Pods Resources */,
195
+ );
196
+ buildRules = (
197
+ );
198
+ dependencies = (
199
+ 607FACE71AFB9204008FA782 /* PBXTargetDependency */,
200
+ );
201
+ name = JomloTableView_Tests;
202
+ productName = Tests;
203
+ productReference = 607FACE51AFB9204008FA782 /* JomloTableView_Tests.xctest */;
204
+ productType = "com.apple.product-type.bundle.unit-test";
205
+ };
206
+/* End PBXNativeTarget section */
207
+
208
+/* Begin PBXProject section */
209
+ 607FACC81AFB9204008FA782 /* Project object */ = {
210
+ isa = PBXProject;
211
+ attributes = {
212
+ LastSwiftUpdateCheck = 0720;
213
+ LastUpgradeCheck = 0820;
214
+ ORGANIZATIONNAME = CocoaPods;
215
+ TargetAttributes = {
216
+ 607FACCF1AFB9204008FA782 = {
217
+ CreatedOnToolsVersion = 6.3.1;
218
+ LastSwiftMigration = 0820;
219
+ };
220
+ 607FACE41AFB9204008FA782 = {
221
+ CreatedOnToolsVersion = 6.3.1;
222
+ LastSwiftMigration = 0820;
223
+ TestTargetID = 607FACCF1AFB9204008FA782;
224
+ };
225
+ };
226
+ };
227
+ buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "JomloTableView" */;
228
+ compatibilityVersion = "Xcode 3.2";
229
+ developmentRegion = English;
230
+ hasScannedForEncodings = 0;
231
+ knownRegions = (
232
+ en,
233
+ Base,
234
+ );
235
+ mainGroup = 607FACC71AFB9204008FA782;
236
+ productRefGroup = 607FACD11AFB9204008FA782 /* Products */;
237
+ projectDirPath = "";
238
+ projectRoot = "";
239
+ targets = (
240
+ 607FACCF1AFB9204008FA782 /* JomloTableView_Example */,
241
+ 607FACE41AFB9204008FA782 /* JomloTableView_Tests */,
242
+ );
243
+ };
244
+/* End PBXProject section */
245
+
246
+/* Begin PBXResourcesBuildPhase section */
247
+ 607FACCE1AFB9204008FA782 /* Resources */ = {
248
+ isa = PBXResourcesBuildPhase;
249
+ buildActionMask = 2147483647;
250
+ files = (
251
+ 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */,
252
+ 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,
253
+ 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,
254
+ );
255
+ runOnlyForDeploymentPostprocessing = 0;
256
+ };
257
+ 607FACE31AFB9204008FA782 /* Resources */ = {
258
+ isa = PBXResourcesBuildPhase;
259
+ buildActionMask = 2147483647;
260
+ files = (
261
+ );
262
+ runOnlyForDeploymentPostprocessing = 0;
263
+ };
264
+/* End PBXResourcesBuildPhase section */
265
+
266
+/* Begin PBXShellScriptBuildPhase section */
267
+ 2D444412411209A719A505D4 /* [CP] Embed Pods Frameworks */ = {
268
+ isa = PBXShellScriptBuildPhase;
269
+ buildActionMask = 2147483647;
270
+ files = (
271
+ );
272
+ inputPaths = (
273
+ );
274
+ name = "[CP] Embed Pods Frameworks";
275
+ outputPaths = (
276
+ );
277
+ runOnlyForDeploymentPostprocessing = 0;
278
+ shellPath = /bin/sh;
279
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JomloTableView_Tests/Pods-JomloTableView_Tests-frameworks.sh\"\n";
280
+ showEnvVarsInLog = 0;
281
+ };
282
+ 61EB6C4B3579114D65EF8E42 /* [CP] Copy Pods Resources */ = {
283
+ isa = PBXShellScriptBuildPhase;
284
+ buildActionMask = 2147483647;
285
+ files = (
286
+ );
287
+ inputPaths = (
288
+ );
289
+ name = "[CP] Copy Pods Resources";
290
+ outputPaths = (
291
+ );
292
+ runOnlyForDeploymentPostprocessing = 0;
293
+ shellPath = /bin/sh;
294
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JomloTableView_Example/Pods-JomloTableView_Example-resources.sh\"\n";
295
+ showEnvVarsInLog = 0;
296
+ };
297
+ 725C4CA07BB62B6C4EFA55C9 /* [CP] Check Pods Manifest.lock */ = {
298
+ isa = PBXShellScriptBuildPhase;
299
+ buildActionMask = 2147483647;
300
+ files = (
301
+ );
302
+ inputPaths = (
303
+ );
304
+ name = "[CP] Check Pods Manifest.lock";
305
+ outputPaths = (
306
+ );
307
+ runOnlyForDeploymentPostprocessing = 0;
308
+ shellPath = /bin/sh;
309
+ shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
310
+ showEnvVarsInLog = 0;
311
+ };
312
+ 842C75DACF091DA4CDAD1B56 /* [CP] Copy Pods Resources */ = {
313
+ isa = PBXShellScriptBuildPhase;
314
+ buildActionMask = 2147483647;
315
+ files = (
316
+ );
317
+ inputPaths = (
318
+ );
319
+ name = "[CP] Copy Pods Resources";
320
+ outputPaths = (
321
+ );
322
+ runOnlyForDeploymentPostprocessing = 0;
323
+ shellPath = /bin/sh;
324
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JomloTableView_Tests/Pods-JomloTableView_Tests-resources.sh\"\n";
325
+ showEnvVarsInLog = 0;
326
+ };
327
+ 933778CD77AAA6FBCC6DE9AD /* [CP] Embed Pods Frameworks */ = {
328
+ isa = PBXShellScriptBuildPhase;
329
+ buildActionMask = 2147483647;
330
+ files = (
331
+ );
332
+ inputPaths = (
333
+ );
334
+ name = "[CP] Embed Pods Frameworks";
335
+ outputPaths = (
336
+ );
337
+ runOnlyForDeploymentPostprocessing = 0;
338
+ shellPath = /bin/sh;
339
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-JomloTableView_Example/Pods-JomloTableView_Example-frameworks.sh\"\n";
340
+ showEnvVarsInLog = 0;
341
+ };
342
+ C0D220C7F6C5C2E558EC4C2A /* [CP] Check Pods Manifest.lock */ = {
343
+ isa = PBXShellScriptBuildPhase;
344
+ buildActionMask = 2147483647;
345
+ files = (
346
+ );
347
+ inputPaths = (
348
+ );
349
+ name = "[CP] Check Pods Manifest.lock";
350
+ outputPaths = (
351
+ );
352
+ runOnlyForDeploymentPostprocessing = 0;
353
+ shellPath = /bin/sh;
354
+ shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
355
+ showEnvVarsInLog = 0;
356
+ };
357
+/* End PBXShellScriptBuildPhase section */
358
+
359
+/* Begin PBXSourcesBuildPhase section */
360
+ 607FACCC1AFB9204008FA782 /* Sources */ = {
361
+ isa = PBXSourcesBuildPhase;
362
+ buildActionMask = 2147483647;
363
+ files = (
364
+ 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,
365
+ 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
366
+ );
367
+ runOnlyForDeploymentPostprocessing = 0;
368
+ };
369
+ 607FACE11AFB9204008FA782 /* Sources */ = {
370
+ isa = PBXSourcesBuildPhase;
371
+ buildActionMask = 2147483647;
372
+ files = (
373
+ 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
374
+ );
375
+ runOnlyForDeploymentPostprocessing = 0;
376
+ };
377
+/* End PBXSourcesBuildPhase section */
378
+
379
+/* Begin PBXTargetDependency section */
380
+ 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {
381
+ isa = PBXTargetDependency;
382
+ target = 607FACCF1AFB9204008FA782 /* JomloTableView_Example */;
383
+ targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;
384
+ };
385
+/* End PBXTargetDependency section */
386
+
387
+/* Begin PBXVariantGroup section */
388
+ 607FACD91AFB9204008FA782 /* Main.storyboard */ = {
389
+ isa = PBXVariantGroup;
390
+ children = (
391
+ 607FACDA1AFB9204008FA782 /* Base */,
392
+ );
393
+ name = Main.storyboard;
394
+ sourceTree = "<group>";
395
+ };
396
+ 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {
397
+ isa = PBXVariantGroup;
398
+ children = (
399
+ 607FACDF1AFB9204008FA782 /* Base */,
400
+ );
401
+ name = LaunchScreen.xib;
402
+ sourceTree = "<group>";
403
+ };
404
+/* End PBXVariantGroup section */
405
+
406
+/* Begin XCBuildConfiguration section */
407
+ 607FACED1AFB9204008FA782 /* Debug */ = {
408
+ isa = XCBuildConfiguration;
409
+ buildSettings = {
410
+ ALWAYS_SEARCH_USER_PATHS = NO;
411
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
412
+ CLANG_CXX_LIBRARY = "libc++";
413
+ CLANG_ENABLE_MODULES = YES;
414
+ CLANG_ENABLE_OBJC_ARC = YES;
415
+ CLANG_WARN_BOOL_CONVERSION = YES;
416
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
417
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
418
+ CLANG_WARN_EMPTY_BODY = YES;
419
+ CLANG_WARN_ENUM_CONVERSION = YES;
420
+ CLANG_WARN_INFINITE_RECURSION = YES;
421
+ CLANG_WARN_INT_CONVERSION = YES;
422
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
423
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
424
+ CLANG_WARN_UNREACHABLE_CODE = YES;
425
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
426
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
427
+ COPY_PHASE_STRIP = NO;
428
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
429
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
430
+ ENABLE_TESTABILITY = YES;
431
+ GCC_C_LANGUAGE_STANDARD = gnu99;
432
+ GCC_DYNAMIC_NO_PIC = NO;
433
+ GCC_NO_COMMON_BLOCKS = YES;
434
+ GCC_OPTIMIZATION_LEVEL = 0;
435
+ GCC_PREPROCESSOR_DEFINITIONS = (
436
+ "DEBUG=1",
437
+ "$(inherited)",
438
+ );
439
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
440
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
441
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
442
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
443
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
444
+ GCC_WARN_UNUSED_FUNCTION = YES;
445
+ GCC_WARN_UNUSED_VARIABLE = YES;
446
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
447
+ MTL_ENABLE_DEBUG_INFO = YES;
448
+ ONLY_ACTIVE_ARCH = YES;
449
+ SDKROOT = iphoneos;
450
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
451
+ };
452
+ name = Debug;
453
+ };
454
+ 607FACEE1AFB9204008FA782 /* Release */ = {
455
+ isa = XCBuildConfiguration;
456
+ buildSettings = {
457
+ ALWAYS_SEARCH_USER_PATHS = NO;
458
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
459
+ CLANG_CXX_LIBRARY = "libc++";
460
+ CLANG_ENABLE_MODULES = YES;
461
+ CLANG_ENABLE_OBJC_ARC = YES;
462
+ CLANG_WARN_BOOL_CONVERSION = YES;
463
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
464
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
465
+ CLANG_WARN_EMPTY_BODY = YES;
466
+ CLANG_WARN_ENUM_CONVERSION = YES;
467
+ CLANG_WARN_INFINITE_RECURSION = YES;
468
+ CLANG_WARN_INT_CONVERSION = YES;
469
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
470
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
471
+ CLANG_WARN_UNREACHABLE_CODE = YES;
472
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
473
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
474
+ COPY_PHASE_STRIP = NO;
475
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
476
+ ENABLE_NS_ASSERTIONS = NO;
477
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
478
+ GCC_C_LANGUAGE_STANDARD = gnu99;
479
+ GCC_NO_COMMON_BLOCKS = YES;
480
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
481
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
482
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
483
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
484
+ GCC_WARN_UNUSED_FUNCTION = YES;
485
+ GCC_WARN_UNUSED_VARIABLE = YES;
486
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
487
+ MTL_ENABLE_DEBUG_INFO = NO;
488
+ SDKROOT = iphoneos;
489
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
490
+ VALIDATE_PRODUCT = YES;
491
+ };
492
+ name = Release;
493
+ };
494
+ 607FACF01AFB9204008FA782 /* Debug */ = {
495
+ isa = XCBuildConfiguration;
496
+ baseConfigurationReference = 1DF5A127CF52147610B75ADE /* Pods-JomloTableView_Example.debug.xcconfig */;
497
+ buildSettings = {
498
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
499
+ INFOPLIST_FILE = JomloTableView/Info.plist;
500
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
501
+ MODULE_NAME = ExampleApp;
502
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
503
+ PRODUCT_NAME = "$(TARGET_NAME)";
504
+ SWIFT_VERSION = 3.0;
505
+ };
506
+ name = Debug;
507
+ };
508
+ 607FACF11AFB9204008FA782 /* Release */ = {
509
+ isa = XCBuildConfiguration;
510
+ baseConfigurationReference = B828666E6D8F9450941A36AB /* Pods-JomloTableView_Example.release.xcconfig */;
511
+ buildSettings = {
512
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
513
+ INFOPLIST_FILE = JomloTableView/Info.plist;
514
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
515
+ MODULE_NAME = ExampleApp;
516
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
517
+ PRODUCT_NAME = "$(TARGET_NAME)";
518
+ SWIFT_VERSION = 3.0;
519
+ };
520
+ name = Release;
521
+ };
522
+ 607FACF31AFB9204008FA782 /* Debug */ = {
523
+ isa = XCBuildConfiguration;
524
+ baseConfigurationReference = E555BEE30E2659F27C50D6B8 /* Pods-JomloTableView_Tests.debug.xcconfig */;
525
+ buildSettings = {
526
+ FRAMEWORK_SEARCH_PATHS = (
527
+ "$(SDKROOT)/Developer/Library/Frameworks",
528
+ "$(inherited)",
529
+ );
530
+ GCC_PREPROCESSOR_DEFINITIONS = (
531
+ "DEBUG=1",
532
+ "$(inherited)",
533
+ );
534
+ INFOPLIST_FILE = Tests/Info.plist;
535
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
536
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
537
+ PRODUCT_NAME = "$(TARGET_NAME)";
538
+ SWIFT_VERSION = 3.0;
539
+ };
540
+ name = Debug;
541
+ };
542
+ 607FACF41AFB9204008FA782 /* Release */ = {
543
+ isa = XCBuildConfiguration;
544
+ baseConfigurationReference = D67A39B8BF2D4AB708B1879B /* Pods-JomloTableView_Tests.release.xcconfig */;
545
+ buildSettings = {
546
+ FRAMEWORK_SEARCH_PATHS = (
547
+ "$(SDKROOT)/Developer/Library/Frameworks",
548
+ "$(inherited)",
549
+ );
550
+ INFOPLIST_FILE = Tests/Info.plist;
551
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
552
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
553
+ PRODUCT_NAME = "$(TARGET_NAME)";
554
+ SWIFT_VERSION = 3.0;
555
+ };
556
+ name = Release;
557
+ };
558
+/* End XCBuildConfiguration section */
559
+
560
+/* Begin XCConfigurationList section */
561
+ 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "JomloTableView" */ = {
562
+ isa = XCConfigurationList;
563
+ buildConfigurations = (
564
+ 607FACED1AFB9204008FA782 /* Debug */,
565
+ 607FACEE1AFB9204008FA782 /* Release */,
566
+ );
567
+ defaultConfigurationIsVisible = 0;
568
+ defaultConfigurationName = Release;
569
+ };
570
+ 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JomloTableView_Example" */ = {
571
+ isa = XCConfigurationList;
572
+ buildConfigurations = (
573
+ 607FACF01AFB9204008FA782 /* Debug */,
574
+ 607FACF11AFB9204008FA782 /* Release */,
575
+ );
576
+ defaultConfigurationIsVisible = 0;
577
+ defaultConfigurationName = Release;
578
+ };
579
+ 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JomloTableView_Tests" */ = {
580
+ isa = XCConfigurationList;
581
+ buildConfigurations = (
582
+ 607FACF31AFB9204008FA782 /* Debug */,
583
+ 607FACF41AFB9204008FA782 /* Release */,
584
+ );
585
+ defaultConfigurationIsVisible = 0;
586
+ defaultConfigurationName = Release;
587
+ };
588
+/* End XCConfigurationList section */
589
+ };
590
+ rootObject = 607FACC81AFB9204008FA782 /* Project object */;
591
+}
Example/JomloTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new
+7
@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:JomloTableView.xcodeproj">
6
+ </FileRef>
7
+</Workspace>
Example/JomloTableView.xcodeproj/xcshareddata/xcschemes/JomloTableView-Example.xcscheme
new
+115
@@ -0,0 +1,115 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<Scheme
3
+ LastUpgradeVersion = "0820"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
18
+ BuildableName = "JomloTableView_Example.app"
19
+ BlueprintName = "JomloTableView_Example"
20
+ ReferencedContainer = "container:JomloTableView.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ <BuildActionEntry
24
+ buildForTesting = "YES"
25
+ buildForRunning = "YES"
26
+ buildForProfiling = "NO"
27
+ buildForArchiving = "NO"
28
+ buildForAnalyzing = "YES">
29
+ <BuildableReference
30
+ BuildableIdentifier = "primary"
31
+ BlueprintIdentifier = "607FACE41AFB9204008FA782"
32
+ BuildableName = "JomloTableView_Tests.xctest"
33
+ BlueprintName = "JomloTableView_Tests"
34
+ ReferencedContainer = "container:JomloTableView.xcodeproj">
35
+ </BuildableReference>
36
+ </BuildActionEntry>
37
+ </BuildActionEntries>
38
+ </BuildAction>
39
+ <TestAction
40
+ buildConfiguration = "Debug"
41
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
42
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43
+ shouldUseLaunchSchemeArgsEnv = "YES">
44
+ <Testables>
45
+ <TestableReference
46
+ skipped = "NO">
47
+ <BuildableReference
48
+ BuildableIdentifier = "primary"
49
+ BlueprintIdentifier = "607FACE41AFB9204008FA782"
50
+ BuildableName = "JomloTableView_Tests.xctest"
51
+ BlueprintName = "JomloTableView_Tests"
52
+ ReferencedContainer = "container:JomloTableView.xcodeproj">
53
+ </BuildableReference>
54
+ </TestableReference>
55
+ </Testables>
56
+ <MacroExpansion>
57
+ <BuildableReference
58
+ BuildableIdentifier = "primary"
59
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
60
+ BuildableName = "JomloTableView_Example.app"
61
+ BlueprintName = "JomloTableView_Example"
62
+ ReferencedContainer = "container:JomloTableView.xcodeproj">
63
+ </BuildableReference>
64
+ </MacroExpansion>
65
+ <AdditionalOptions>
66
+ </AdditionalOptions>
67
+ </TestAction>
68
+ <LaunchAction
69
+ buildConfiguration = "Debug"
70
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
71
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
72
+ launchStyle = "0"
73
+ useCustomWorkingDirectory = "NO"
74
+ ignoresPersistentStateOnLaunch = "NO"
75
+ debugDocumentVersioning = "YES"
76
+ debugServiceExtension = "internal"
77
+ allowLocationSimulation = "YES">
78
+ <BuildableProductRunnable
79
+ runnableDebuggingMode = "0">
80
+ <BuildableReference
81
+ BuildableIdentifier = "primary"
82
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
83
+ BuildableName = "JomloTableView_Example.app"
84
+ BlueprintName = "JomloTableView_Example"
85
+ ReferencedContainer = "container:JomloTableView.xcodeproj">
86
+ </BuildableReference>
87
+ </BuildableProductRunnable>
88
+ <AdditionalOptions>
89
+ </AdditionalOptions>
90
+ </LaunchAction>
91
+ <ProfileAction
92
+ buildConfiguration = "Release"
93
+ shouldUseLaunchSchemeArgsEnv = "YES"
94
+ savedToolIdentifier = ""
95
+ useCustomWorkingDirectory = "NO"
96
+ debugDocumentVersioning = "YES">
97
+ <BuildableProductRunnable
98
+ runnableDebuggingMode = "0">
99
+ <BuildableReference
100
+ BuildableIdentifier = "primary"
101
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
102
+ BuildableName = "JomloTableView_Example.app"
103
+ BlueprintName = "JomloTableView_Example"
104
+ ReferencedContainer = "container:JomloTableView.xcodeproj">
105
+ </BuildableReference>
106
+ </BuildableProductRunnable>
107
+ </ProfileAction>
108
+ <AnalyzeAction
109
+ buildConfiguration = "Debug">
110
+ </AnalyzeAction>
111
+ <ArchiveAction
112
+ buildConfiguration = "Release"
113
+ revealArchiveInOrganizer = "YES">
114
+ </ArchiveAction>
115
+</Scheme>
Example/JomloTableView/AppDelegate.swift
new
+46
@@ -0,0 +1,46 @@
1
+//
2
+// AppDelegate.swift
3
+// JomloTableView
4
+//
5
+// Created by setoelkahfi on 03/27/2017.
6
+// Copyright (c) 2017 setoelkahfi. All rights reserved.
7
+//
8
+
9
+import UIKit
10
+
11
+@UIApplicationMain
12
+class AppDelegate: UIResponder, UIApplicationDelegate {
13
+
14
+ var window: UIWindow?
15
+
16
+
17
+ func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18
+ // Override point for customization after application launch.
19
+ return true
20
+ }
21
+
22
+ func applicationWillResignActive(_ application: UIApplication) {
23
+ // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
24
+ // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
25
+ }
26
+
27
+ func applicationDidEnterBackground(_ application: UIApplication) {
28
+ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
29
+ // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
30
+ }
31
+
32
+ func applicationWillEnterForeground(_ application: UIApplication) {
33
+ // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
34
+ }
35
+
36
+ func applicationDidBecomeActive(_ application: UIApplication) {
37
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
38
+ }
39
+
40
+ func applicationWillTerminate(_ application: UIApplication) {
41
+ // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
42
+ }
43
+
44
+
45
+}
46
+
Example/JomloTableView/Base.lproj/LaunchScreen.xib
new
+41
@@ -0,0 +1,41 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6214" systemVersion="14A314h" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6207"/>
5
+ <capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
6
+ </dependencies>
7
+ <objects>
8
+ <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
9
+ <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
10
+ <view contentMode="scaleToFill" id="iN0-l3-epB">
11
+ <rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
12
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
13
+ <subviews>
14
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text=" Copyright (c) 2015 CocoaPods. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
15
+ <rect key="frame" x="20" y="439" width="441" height="21"/>
16
+ <fontDescription key="fontDescription" type="system" pointSize="17"/>
17
+ <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
18
+ <nil key="highlightedColor"/>
19
+ </label>
20
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="JomloTableView" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
21
+ <rect key="frame" x="20" y="140" width="441" height="43"/>
22
+ <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
23
+ <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
24
+ <nil key="highlightedColor"/>
25
+ </label>
26
+ </subviews>
27
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
28
+ <constraints>
29
+ <constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
30
+ <constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
31
+ <constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
32
+ <constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
33
+ <constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
34
+ <constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
35
+ </constraints>
36
+ <nil key="simulatedStatusBarMetrics"/>
37
+ <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
38
+ <point key="canvasLocation" x="548" y="455"/>
39
+ </view>
40
+ </objects>
41
+</document>
Example/JomloTableView/Base.lproj/Main.storyboard
new
+25
@@ -0,0 +1,25 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6211" systemVersion="14A298i" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="vXZ-lx-hvc">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6204"/>
5
+ </dependencies>
6
+ <scenes>
7
+ <!--View Controller-->
8
+ <scene sceneID="ufC-wZ-h7g">
9
+ <objects>
10
+ <viewController id="vXZ-lx-hvc" customClass="ViewController" customModuleProvider="target" sceneMemberID="viewController">
11
+ <layoutGuides>
12
+ <viewControllerLayoutGuide type="top" id="jyV-Pf-zRb"/>
13
+ <viewControllerLayoutGuide type="bottom" id="2fi-mo-0CV"/>
14
+ </layoutGuides>
15
+ <view key="view" contentMode="scaleToFill" id="kh9-bI-dsS">
16
+ <rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
17
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
18
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
19
+ </view>
20
+ </viewController>
21
+ <placeholder placeholderIdentifier="IBFirstResponder" id="x5A-6p-PRh" sceneMemberID="firstResponder"/>
22
+ </objects>
23
+ </scene>
24
+ </scenes>
25
+</document>
Example/JomloTableView/Images.xcassets/AppIcon.appiconset/Contents.json
new
+38
@@ -0,0 +1,38 @@
1
+{
2
+ "images" : [
3
+ {
4
+ "idiom" : "iphone",
5
+ "size" : "29x29",
6
+ "scale" : "2x"
7
+ },
8
+ {
9
+ "idiom" : "iphone",
10
+ "size" : "29x29",
11
+ "scale" : "3x"
12
+ },
13
+ {
14
+ "idiom" : "iphone",
15
+ "size" : "40x40",
16
+ "scale" : "2x"
17
+ },
18
+ {
19
+ "idiom" : "iphone",
20
+ "size" : "40x40",
21
+ "scale" : "3x"
22
+ },
23
+ {
24
+ "idiom" : "iphone",
25
+ "size" : "60x60",
26
+ "scale" : "2x"
27
+ },
28
+ {
29
+ "idiom" : "iphone",
30
+ "size" : "60x60",
31
+ "scale" : "3x"
32
+ }
33
+ ],
34
+ "info" : {
35
+ "version" : 1,
36
+ "author" : "xcode"
37
+ }
38
+}
Example/JomloTableView/Info.plist
new
+39
@@ -0,0 +1,39 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>APPL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ <key>LSRequiresIPhoneOS</key>
24
+ <true/>
25
+ <key>UILaunchStoryboardName</key>
26
+ <string>LaunchScreen</string>
27
+ <key>UIMainStoryboardFile</key>
28
+ <string>Main</string>
29
+ <key>UIRequiredDeviceCapabilities</key>
30
+ <array>
31
+ <string>armv7</string>
32
+ </array>
33
+ <key>UISupportedInterfaceOrientations</key>
34
+ <array>
35
+ <string>UIInterfaceOrientationPortrait</string>
36
+ <string>UIInterfaceOrientationLandscapeLeft</string>
37
+ </array>
38
+</dict>
39
+</plist>
Example/JomloTableView/ViewController.swift
new
+24
@@ -0,0 +1,24 @@
1
+//
2
+// ViewController.swift
3
+// JomloTableView
4
+//
5
+// Created by setoelkahfi on 03/27/2017.
6
+// Copyright (c) 2017 setoelkahfi. All rights reserved.
7
+//
8
+
9
+import UIKit
10
+
11
+class ViewController: UIViewController {
12
+
13
+ override func viewDidLoad() {
14
+ super.viewDidLoad()
15
+ // Do any additional setup after loading the view, typically from a nib.
16
+ }
17
+
18
+ override func didReceiveMemoryWarning() {
19
+ super.didReceiveMemoryWarning()
20
+ // Dispose of any resources that can be recreated.
21
+ }
22
+
23
+}
24
+
Example/Podfile
new
+11
@@ -0,0 +1,11 @@
1
+use_frameworks!
2
+
3
+target 'JomloTableView_Example' do
4
+ pod 'JomloTableView', :path => '../'
5
+
6
+ target 'JomloTableView_Tests' do
7
+ inherit! :search_paths
8
+
9
+
10
+ end
11
+end
Example/Tests/Info.plist
new
+24
@@ -0,0 +1,24 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>BNDL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+</dict>
24
+</plist>
Example/Tests/Tests.swift
new
+29
@@ -0,0 +1,29 @@
1
+import UIKit
2
+import XCTest
3
+import JomloTableView
4
+
5
+class Tests: XCTestCase {
6
+
7
+ override func setUp() {
8
+ super.setUp()
9
+ // Put setup code here. This method is called before the invocation of each test method in the class.
10
+ }
11
+
12
+ override func tearDown() {
13
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
14
+ super.tearDown()
15
+ }
16
+
17
+ func testExample() {
18
+ // This is an example of a functional test case.
19
+ XCTAssert(true, "Pass")
20
+ }
21
+
22
+ func testPerformanceExample() {
23
+ // This is an example of a performance test case.
24
+ self.measure() {
25
+ // Put the code you want to measure the time of here.
26
+ }
27
+ }
28
+
29
+}
JomloTableView.podspec
new
+42
@@ -0,0 +1,42 @@
1
+#
2
+# Be sure to run `pod lib lint JomloTableView.podspec' to ensure this is a
3
+# valid spec before submitting.
4
+#
5
+# Any lines starting with a # are optional, but their use is encouraged
6
+# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
7
+#
8
+
9
+Pod::Spec.new do |s|
10
+ s.name = 'JomloTableView'
11
+ s.version = '0.1.0'
12
+ s.summary = 'A short description of JomloTableView.'
13
+
14
+# This description is used to generate tags and improve search results.
15
+# * Think: What does it do? Why did you write it? What is the focus?
16
+# * Try to keep it short, snappy and to the point.
17
+# * Write the description between the DESC delimiters below.
18
+# * Finally, don't worry about the indent, CocoaPods strips it!
19
+
20
+ s.description = <<-DESC
21
+TODO: Add long description of the pod here.
22
+ DESC
23
+
24
+ s.homepage = 'https://github.com/setoelkahfi/JomloTableView'
25
+ # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
26
+ s.license = { :type => 'MIT', :file => 'LICENSE' }
27
+ s.author = { 'setoelkahfi' => 'setoelkahfi@gmail.com' }
28
+ s.source = { :git => 'https://github.com/setoelkahfi/JomloTableView.git', :tag => s.version.to_s }
29
+ # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
30
+
31
+ s.ios.deployment_target = '8.0'
32
+
33
+ s.source_files = 'JomloTableView/Classes/**/*'
34
+
35
+ # s.resource_bundles = {
36
+ # 'JomloTableView' => ['JomloTableView/Assets/*.png']
37
+ # }
38
+
39
+ # s.public_header_files = 'Pod/Classes/**/*.h'
40
+ # s.frameworks = 'UIKit', 'MapKit'
41
+ # s.dependency 'AFNetworking', '~> 2.3'
42
+end
JomloTableView/Assets/.gitkeep
JomloTableView/Classes/.gitkeep
JomloTableView/Classes/ReplaceMe.swift
LICENSE
new
+19
@@ -0,0 +1,19 @@
1
+Copyright (c) 2017 setoelkahfi <setoelkahfi@gmail.com>
2
+
3
+Permission is hereby granted, free of charge, to any person obtaining a copy
4
+of this software and associated documentation files (the "Software"), to deal
5
+in the Software without restriction, including without limitation the rights
6
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+copies of the Software, and to permit persons to whom the Software is
8
+furnished to do so, subject to the following conditions:
9
+
10
+The above copyright notice and this permission notice shall be included in
11
+all copies or substantial portions of the Software.
12
+
13
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+THE SOFTWARE.
README.md
new
+29
@@ -0,0 +1,29 @@
1
+# JomloTableView
2
+
3
+[](https://travis-ci.org/setoelkahfi/JomloTableView)
4
+[](http://cocoapods.org/pods/JomloTableView)
5
+[](http://cocoapods.org/pods/JomloTableView)
6
+[](http://cocoapods.org/pods/JomloTableView)
7
+
8
+## Example
9
+
10
+To run the example project, clone the repo, and run `pod install` from the Example directory first.
11
+
12
+## Requirements
13
+
14
+## Installation
15
+
16
+JomloTableView is available through [CocoaPods](http://cocoapods.org). To install
17
+it, simply add the following line to your Podfile:
18
+
19
+```ruby
20
+pod "JomloTableView"
21
+```
22
+
23
+## Author
24
+
25
+setoelkahfi, setoelkahfi@gmail.com
26
+
27
+## License
28
+
29
+JomloTableView is available under the MIT license. See the LICENSE file for more info.
_Pods.xcodeproj
new
+1
@@ -0,0 +1 @@
1
+Example/Pods/Pods.xcodeproj
\ No newline at end of file