Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit 2a80223

Browse files
committed
readme file
1 parent 762c84f commit 2a80223

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

ListaCoreData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
9646CB051B8E8B61003FF188 /* ListaCoreDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9646CB041B8E8B61003FF188 /* ListaCoreDataTests.swift */; };
1717
96D974FA1B8F4193008C4F72 /* ListaCoreDataFunctions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96D974F91B8F4193008C4F72 /* ListaCoreDataFunctions.swift */; };
1818
96D974FC1B8F4212008C4F72 /* Itens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96D974FB1B8F4212008C4F72 /* Itens.swift */; };
19+
96EB560B1B8F61240059EB1B /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = 96EB560A1B8F61240059EB1B /* README.md */; };
1920
/* End PBXBuildFile section */
2021

2122
/* Begin PBXContainerItemProxy section */
@@ -42,6 +43,7 @@
4243
9646CB041B8E8B61003FF188 /* ListaCoreDataTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListaCoreDataTests.swift; sourceTree = "<group>"; };
4344
96D974F91B8F4193008C4F72 /* ListaCoreDataFunctions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListaCoreDataFunctions.swift; sourceTree = "<group>"; };
4445
96D974FB1B8F4212008C4F72 /* Itens.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Itens.swift; sourceTree = "<group>"; };
46+
96EB560A1B8F61240059EB1B /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
4547
/* End PBXFileReference section */
4648

4749
/* Begin PBXFrameworksBuildPhase section */
@@ -65,6 +67,7 @@
6567
9646CADD1B8E8B60003FF188 = {
6668
isa = PBXGroup;
6769
children = (
70+
96EB560A1B8F61240059EB1B /* README.md */,
6871
9646CAE81B8E8B60003FF188 /* ListaCoreData */,
6972
9646CB011B8E8B61003FF188 /* ListaCoreDataTests */,
7073
9646CAE71B8E8B60003FF188 /* Products */,
@@ -201,6 +204,7 @@
201204
isa = PBXResourcesBuildPhase;
202205
buildActionMask = 2147483647;
203206
files = (
207+
96EB560B1B8F61240059EB1B /* README.md in Resources */,
204208
9646CAF41B8E8B60003FF188 /* Main.storyboard in Resources */,
205209
9646CAF91B8E8B60003FF188 /* LaunchScreen.xib in Resources */,
206210
9646CAF61B8E8B60003FF188 /* Images.xcassets in Resources */,
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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>IDESourceControlProjectFavoriteDictionaryKey</key>
6+
<false/>
7+
<key>IDESourceControlProjectIdentifier</key>
8+
<string>1B0671BA-B099-4EC3-BAF0-F6BEB3933197</string>
9+
<key>IDESourceControlProjectName</key>
10+
<string>ListaCoreData</string>
11+
<key>IDESourceControlProjectOriginsDictionary</key>
12+
<dict>
13+
<key>5000B6892E1DBFEB3F3375ACCCCA32A3C121FBDE</key>
14+
<string>github.com:diegorv/iOS-Swift-TableView-CoreData-Example.git</string>
15+
</dict>
16+
<key>IDESourceControlProjectPath</key>
17+
<string>ListaCoreData.xcodeproj</string>
18+
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
19+
<dict>
20+
<key>5000B6892E1DBFEB3F3375ACCCCA32A3C121FBDE</key>
21+
<string>../..</string>
22+
</dict>
23+
<key>IDESourceControlProjectURL</key>
24+
<string>github.com:diegorv/iOS-Swift-TableView-CoreData-Example.git</string>
25+
<key>IDESourceControlProjectVersion</key>
26+
<integer>111</integer>
27+
<key>IDESourceControlProjectWCCIdentifier</key>
28+
<string>5000B6892E1DBFEB3F3375ACCCCA32A3C121FBDE</string>
29+
<key>IDESourceControlProjectWCConfigurations</key>
30+
<array>
31+
<dict>
32+
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
33+
<string>public.vcs.git</string>
34+
<key>IDESourceControlWCCIdentifierKey</key>
35+
<string>5000B6892E1DBFEB3F3375ACCCCA32A3C121FBDE</string>
36+
<key>IDESourceControlWCCName</key>
37+
<string>ListaCoreData</string>
38+
</dict>
39+
</array>
40+
</dict>
41+
</plist>

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
/ Created by Diego Rossini Vieira on 8/27/15.
3+
/ Xcode 6.4 - iOS 8
4+
/
5+
/ TableView with actions + CoreData Example
6+
/
7+
/

0 commit comments

Comments
 (0)