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

Commit 012e50a

Browse files
committed
Rename project and delete tests
1 parent 64775d1 commit 012e50a

File tree

13 files changed

+41
-150
lines changed

13 files changed

+41
-150
lines changed

iOS8-Swift-TableView-CoreData-Example.xcodeproj/project.pbxproj renamed to iOS-Swift-TableView-CoreData-Example.xcodeproj/project.pbxproj

Lines changed: 27 additions & 136 deletions
Large diffs are not rendered by default.

iOS8-Swift-TableView-CoreData-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata renamed to iOS-Swift-TableView-CoreData-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iOS8-Swift-TableView-CoreData-Example/AppDelegate.swift renamed to iOS-Swift-TableView-CoreData-Example/AppDelegate.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Item.swift
3-
// iOS8-Swift-TableView-CoreData-Example
3+
// iOS-Swift-TableView-CoreData-Example
44
//
55
// Created by Diego Rossini Vieira on 9/7/15.
66
// https://github.com/diegorv/iOS-Swift-TableView-CoreData-Example
@@ -47,22 +47,22 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
4747
// MARK: - Core Data stack
4848

4949
lazy var applicationDocumentsDirectory: NSURL = {
50-
// The directory the application uses to store the Core Data store file. This code uses a directory named "com.diegorv.iOS8_Swift_TableView_CoreData_Example" in the application's documents Application Support directory.
50+
// The directory the application uses to store the Core Data store file. This code uses a directory named "com.diegorv.iOS_Swift_TableView_CoreData_Example" in the application's documents Application Support directory.
5151
let urls = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)
5252
return urls[urls.count-1] as! NSURL
5353
}()
5454

5555
lazy var managedObjectModel: NSManagedObjectModel = {
5656
// The managed object model for the application. This property is not optional. It is a fatal error for the application not to be able to find and load its model.
57-
let modelURL = NSBundle.mainBundle().URLForResource("iOS8_Swift_TableView_CoreData_Example", withExtension: "momd")!
57+
let modelURL = NSBundle.mainBundle().URLForResource("iOS_Swift_TableView_CoreData_Example", withExtension: "momd")!
5858
return NSManagedObjectModel(contentsOfURL: modelURL)!
5959
}()
6060

6161
lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator? = {
6262
// The persistent store coordinator for the application. This implementation creates and return a coordinator, having added the store for the application to it. This property is optional since there are legitimate error conditions that could cause the creation of the store to fail.
6363
// Create the coordinator and store
6464
var coordinator: NSPersistentStoreCoordinator? = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
65-
let url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("iOS8_Swift_TableView_CoreData_Example.sqlite")
65+
let url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("iOS_Swift_TableView_CoreData_Example.sqlite")
6666
var error: NSError? = nil
6767
var failureReason = "There was an error creating or loading the application's saved data."
6868
if coordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: nil, error: &error) == nil {

iOS8-Swift-TableView-CoreData-Example/Base.lproj/LaunchScreen.xib renamed to iOS-Swift-TableView-CoreData-Example/Base.lproj/LaunchScreen.xib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
1818
<nil key="highlightedColor"/>
1919
</label>
20-
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="iOS8-Swift-TableView-CoreData-Example" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
20+
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="iOS-Swift-TableView-CoreData-Example" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
2121
<rect key="frame" x="20" y="140" width="441" height="43"/>
2222
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
2323
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>

iOS8-Swift-TableView-CoreData-Example/Base.lproj/Main.storyboard renamed to iOS-Swift-TableView-CoreData-Example/Base.lproj/Main.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<!--View Controller-->
99
<scene sceneID="tne-QT-ifu">
1010
<objects>
11-
<viewController id="BYZ-38-t0r" customClass="ViewController" customModule="iOS8_Swift_TableView_CoreData_Example" customModuleProvider="target" sceneMemberID="viewController">
11+
<viewController id="BYZ-38-t0r" customClass="ViewController" customModule="iOS_Swift_TableView_CoreData_Example" customModuleProvider="target" sceneMemberID="viewController">
1212
<layoutGuides>
1313
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
1414
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>

iOS8-Swift-TableView-CoreData-Example/Images.xcassets/AppIcon.appiconset/Contents.json renamed to iOS-Swift-TableView-CoreData-Example/Images.xcassets/AppIcon.appiconset/Contents.json

File renamed without changes.
File renamed without changes.

iOS8-Swift-TableView-CoreData-Example/Item.swift renamed to iOS-Swift-TableView-CoreData-Example/Item.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Item.swift
3-
// iOS8-Swift-TableView-CoreData-Example
3+
// iOS-Swift-TableView-CoreData-Example
44
//
55
// Created by Diego Rossini Vieira on 9/7/15.
66
// https://github.com/diegorv/iOS-Swift-TableView-CoreData-Example

iOS8-Swift-TableView-CoreData-Example/ViewController.swift renamed to iOS-Swift-TableView-CoreData-Example/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Item.swift
3-
// iOS8-Swift-TableView-CoreData-Example
3+
// iOS-Swift-TableView-CoreData-Example
44
//
55
// Created by Diego Rossini Vieira on 9/7/15.
66
// https://github.com/diegorv/iOS-Swift-TableView-CoreData-Example

iOS8-Swift-TableView-CoreData-Example/iOS8_Swift_TableView_CoreData_Example.xcdatamodeld/.xccurrentversion renamed to iOS-Swift-TableView-CoreData-Example/iOS_Swift_TableView_CoreData_Example.xcdatamodeld/.xccurrentversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<plist version="1.0">
44
<dict>
55
<key>_XCCurrentVersionName</key>
6-
<string>iOS8_Swift_TableView_CoreData_Example.xcdatamodel</string>
6+
<string>iOS_Swift_TableView_CoreData_Example.xcdatamodel</string>
77
</dict>
88
</plist>

0 commit comments

Comments
 (0)