Skip to content

Commit ab56793

Browse files
foxsofterfoxsofter
authored andcommitted
initial commit
1 parent e2baca6 commit ab56793

File tree

230 files changed

+26612
-1847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+26612
-1847
lines changed

Example/LPDTableViewKit.xcodeproj/project.pbxproj

Lines changed: 52 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
2323
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
2424
892CE1C07533D36D457ABFD0 /* Pods_LPDTableViewKit_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1ECE399BA5F777669CEEF10A /* Pods_LPDTableViewKit_Example.framework */; };
25+
8E11DD421DF427A7003F60F6 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8E11DD411DF427A7003F60F6 /* Launch Screen.storyboard */; };
26+
8E11DD491DF434BD003F60F6 /* LPDPostModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E11DD451DF434BD003F60F6 /* LPDPostModel.m */; };
27+
8E11DD4A1DF434BD003F60F6 /* LPDTableViewPostCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E11DD481DF434BD003F60F6 /* LPDTableViewPostCell.m */; };
28+
8E11DD4E1DF435E3003F60F6 /* LPDTablePostCellViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E11DD4D1DF435E3003F60F6 /* LPDTablePostCellViewModel.m */; };
2529
FB23917764C182FE3245D4AF /* Pods_LPDTableViewKit_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E1CA926FC77CB7255B4695B1 /* Pods_LPDTableViewKit_Tests.framework */; };
2630
/* End PBXBuildFile section */
2731

@@ -36,9 +40,9 @@
3640
/* End PBXContainerItemProxy section */
3741

3842
/* Begin PBXFileReference section */
39-
07199EC382F4BFBC36BFE9C8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
43+
07199EC382F4BFBC36BFE9C8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
4044
1ECE399BA5F777669CEEF10A /* Pods_LPDTableViewKit_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LPDTableViewKit_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
41-
418437BD845129103F38431E /* LPDTableViewKit.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = LPDTableViewKit.podspec; path = ../LPDTableViewKit.podspec; sourceTree = "<group>"; };
45+
418437BD845129103F38431E /* LPDTableViewKit.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LPDTableViewKit.podspec; path = ../LPDTableViewKit.podspec; sourceTree = "<group>"; };
4246
4EEF795ACAF5E84AC9B9F289 /* Pods-LPDTableViewKit_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LPDTableViewKit_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-LPDTableViewKit_Tests/Pods-LPDTableViewKit_Tests.release.xcconfig"; sourceTree = "<group>"; };
4347
6003F58A195388D20070C39A /* LPDTableViewKit_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LPDTableViewKit_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
4448
6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -59,9 +63,16 @@
5963
6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
6064
6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
6165
606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
62-
625251ECB6C06AB281F16BF5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
66+
625251ECB6C06AB281F16BF5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
6367
68B5731D016DB9F4FD51F88E /* Pods-LPDTableViewKit_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LPDTableViewKit_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-LPDTableViewKit_Example/Pods-LPDTableViewKit_Example.release.xcconfig"; sourceTree = "<group>"; };
6468
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
69+
8E11DD411DF427A7003F60F6 /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
70+
8E11DD441DF434BD003F60F6 /* LPDPostModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPDPostModel.h; sourceTree = "<group>"; };
71+
8E11DD451DF434BD003F60F6 /* LPDPostModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPDPostModel.m; sourceTree = "<group>"; };
72+
8E11DD471DF434BD003F60F6 /* LPDTableViewPostCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPDTableViewPostCell.h; sourceTree = "<group>"; };
73+
8E11DD481DF434BD003F60F6 /* LPDTableViewPostCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPDTableViewPostCell.m; sourceTree = "<group>"; };
74+
8E11DD4C1DF435E3003F60F6 /* LPDTablePostCellViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPDTablePostCellViewModel.h; sourceTree = "<group>"; };
75+
8E11DD4D1DF435E3003F60F6 /* LPDTablePostCellViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPDTablePostCellViewModel.m; sourceTree = "<group>"; };
6576
C04072B624FFFB0BD8E1AE4C /* Pods-LPDTableViewKit_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LPDTableViewKit_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LPDTableViewKit_Example/Pods-LPDTableViewKit_Example.debug.xcconfig"; sourceTree = "<group>"; };
6677
C5D1F19293395F61B0D5D1C3 /* Pods-LPDTableViewKit_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LPDTableViewKit_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LPDTableViewKit_Tests/Pods-LPDTableViewKit_Tests.debug.xcconfig"; sourceTree = "<group>"; };
6778
E1CA926FC77CB7255B4695B1 /* Pods_LPDTableViewKit_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LPDTableViewKit_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -130,12 +141,16 @@
130141
6003F593195388D20070C39A /* Example for LPDTableViewKit */ = {
131142
isa = PBXGroup;
132143
children = (
144+
8E11DD431DF434BD003F60F6 /* Models */,
145+
8E11DD4B1DF435E3003F60F6 /* ViewModels */,
146+
8E11DD461DF434BD003F60F6 /* Views */,
133147
6003F59C195388D20070C39A /* LPDAppDelegate.h */,
134148
6003F59D195388D20070C39A /* LPDAppDelegate.m */,
135-
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
136149
6003F5A5195388D20070C39A /* LPDViewController.h */,
137150
6003F5A6195388D20070C39A /* LPDViewController.m */,
138151
6003F5A8195388D20070C39A /* Images.xcassets */,
152+
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
153+
8E11DD411DF427A7003F60F6 /* Launch Screen.storyboard */,
139154
6003F594195388D20070C39A /* Supporting Files */,
140155
);
141156
name = "Example for LPDTableViewKit";
@@ -182,6 +197,33 @@
182197
name = "Podspec Metadata";
183198
sourceTree = "<group>";
184199
};
200+
8E11DD431DF434BD003F60F6 /* Models */ = {
201+
isa = PBXGroup;
202+
children = (
203+
8E11DD441DF434BD003F60F6 /* LPDPostModel.h */,
204+
8E11DD451DF434BD003F60F6 /* LPDPostModel.m */,
205+
);
206+
path = Models;
207+
sourceTree = "<group>";
208+
};
209+
8E11DD461DF434BD003F60F6 /* Views */ = {
210+
isa = PBXGroup;
211+
children = (
212+
8E11DD471DF434BD003F60F6 /* LPDTableViewPostCell.h */,
213+
8E11DD481DF434BD003F60F6 /* LPDTableViewPostCell.m */,
214+
);
215+
path = Views;
216+
sourceTree = "<group>";
217+
};
218+
8E11DD4B1DF435E3003F60F6 /* ViewModels */ = {
219+
isa = PBXGroup;
220+
children = (
221+
8E11DD4C1DF435E3003F60F6 /* LPDTablePostCellViewModel.h */,
222+
8E11DD4D1DF435E3003F60F6 /* LPDTablePostCellViewModel.m */,
223+
);
224+
path = ViewModels;
225+
sourceTree = "<group>";
226+
};
185227
B9BBCACA298F1BAEEB77FAA3 /* Pods */ = {
186228
isa = PBXGroup;
187229
children = (
@@ -278,6 +320,7 @@
278320
files = (
279321
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
280322
6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
323+
8E11DD421DF427A7003F60F6 /* Launch Screen.storyboard in Resources */,
281324
6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
282325
);
283326
runOnlyForDeploymentPostprocessing = 0;
@@ -390,7 +433,10 @@
390433
isa = PBXSourcesBuildPhase;
391434
buildActionMask = 2147483647;
392435
files = (
436+
8E11DD491DF434BD003F60F6 /* LPDPostModel.m in Sources */,
393437
6003F59E195388D20070C39A /* LPDAppDelegate.m in Sources */,
438+
8E11DD4E1DF435E3003F60F6 /* LPDTablePostCellViewModel.m in Sources */,
439+
8E11DD4A1DF434BD003F60F6 /* LPDTableViewPostCell.m in Sources */,
394440
6003F5A7195388D20070C39A /* LPDViewController.m in Sources */,
395441
6003F59A195388D20070C39A /* main.m in Sources */,
396442
);
@@ -512,10 +558,10 @@
512558
baseConfigurationReference = C04072B624FFFB0BD8E1AE4C /* Pods-LPDTableViewKit_Example.debug.xcconfig */;
513559
buildSettings = {
514560
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
515-
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
516561
GCC_PRECOMPILE_PREFIX_HEADER = YES;
517562
GCC_PREFIX_HEADER = "LPDTableViewKit/LPDTableViewKit-Prefix.pch";
518563
INFOPLIST_FILE = "LPDTableViewKit/LPDTableViewKit-Info.plist";
564+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
519565
MODULE_NAME = ExampleApp;
520566
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
521567
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -528,10 +574,10 @@
528574
baseConfigurationReference = 68B5731D016DB9F4FD51F88E /* Pods-LPDTableViewKit_Example.release.xcconfig */;
529575
buildSettings = {
530576
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
531-
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
532577
GCC_PRECOMPILE_PREFIX_HEADER = YES;
533578
GCC_PREFIX_HEADER = "LPDTableViewKit/LPDTableViewKit-Prefix.pch";
534579
INFOPLIST_FILE = "LPDTableViewKit/LPDTableViewKit-Info.plist";
580+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
535581
MODULE_NAME = ExampleApp;
536582
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
537583
PRODUCT_NAME = "$(TARGET_NAME)";
3.94 KB
Loading
2.89 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"scale" : "1x"
6+
},
7+
{
8+
"idiom" : "universal",
9+
"filename" : "01.png",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"filename" : "01-1.png",
15+
"scale" : "3x"
16+
}
17+
],
18+
"info" : {
19+
"version" : 1,
20+
"author" : "xcode"
21+
}
22+
}
4.68 KB
Loading
2.93 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"scale" : "1x"
6+
},
7+
{
8+
"idiom" : "universal",
9+
"filename" : "02.png",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"filename" : "02-1.png",
15+
"scale" : "3x"
16+
}
17+
],
18+
"info" : {
19+
"version" : 1,
20+
"author" : "xcode"
21+
}
22+
}
4.67 KB
Loading
2.97 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"scale" : "1x"
6+
},
7+
{
8+
"idiom" : "universal",
9+
"filename" : "03.png",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"filename" : "03-1.png",
15+
"scale" : "3x"
16+
}
17+
],
18+
"info" : {
19+
"version" : 1,
20+
"author" : "xcode"
21+
}
22+
}

0 commit comments

Comments
 (0)