Skip to content

Commit d4e368e

Browse files
committed
Part 5
1 parent e77ccdb commit d4e368e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

TestSwift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
0229AE63193F97EF00BCED97 /* Blank52.png in Resources */ = {isa = PBXBuildFile; fileRef = 0229AE62193F97EF00BCED97 /* Blank52.png */; };
1011
02CCF4A8193D16930069AEE9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02CCF4A7193D16930069AEE9 /* AppDelegate.swift */; };
1112
02CCF4AA193D16930069AEE9 /* SearchResultsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02CCF4A9193D16930069AEE9 /* SearchResultsViewController.swift */; };
1213
02CCF4AD193D16930069AEE9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 02CCF4AB193D16930069AEE9 /* Main.storyboard */; };
@@ -26,6 +27,7 @@
2627
/* End PBXContainerItemProxy section */
2728

2829
/* Begin PBXFileReference section */
30+
0229AE62193F97EF00BCED97 /* Blank52.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Blank52.png; sourceTree = "<group>"; };
2931
02CCF4A2193D16930069AEE9 /* TestSwift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestSwift.app; sourceTree = BUILT_PRODUCTS_DIR; };
3032
02CCF4A6193D16930069AEE9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3133
02CCF4A7193D16930069AEE9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
@@ -77,6 +79,7 @@
7779
02CCF4A4193D16930069AEE9 /* TestSwift */ = {
7880
isa = PBXGroup;
7981
children = (
82+
0229AE62193F97EF00BCED97 /* Blank52.png */,
8083
02CCF4A7193D16930069AEE9 /* AppDelegate.swift */,
8184
02CCF4A9193D16930069AEE9 /* SearchResultsViewController.swift */,
8285
02F504DA193E0B630037F599 /* APIController.swift */,
@@ -192,6 +195,7 @@
192195
isa = PBXResourcesBuildPhase;
193196
buildActionMask = 2147483647;
194197
files = (
198+
0229AE63193F97EF00BCED97 /* Blank52.png in Resources */,
195199
02CCF4AD193D16930069AEE9 /* Main.storyboard in Resources */,
196200
02CCF4AF193D16930069AEE9 /* Images.xcassets in Resources */,
197201
);

TestSwift/Blank52.png

975 Bytes
Loading

TestSwift/SearchResultsViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class SearchResultsViewController: UIViewController, UITableViewDataSource, UITa
4141
// Add a check to make sure this exists
4242
let cellText: String? = rowData["trackName"] as? String
4343
cell.text = cellText
44-
cell.image = UIImage(named: "Icon76")
44+
cell.image = UIImage(named: "Blank52")
4545

4646

4747
// Get the formatted price string for display in the subtitle

0 commit comments

Comments
 (0)