diff options
| author | mo khan <mo@mokhan.ca> | 2013-07-14 19:04:00 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-07-14 19:04:00 -0600 |
| commit | e20daadad8076309b21314379dc1fed048ca6903 (patch) | |
| tree | 33844bf2f3e0320b25c30a36f46566592d202b51 | |
| parent | 1a0738b5a49bb8aa6e5d1d1b69914a47d011b422 (diff) | |
add app icon
| -rw-r--r-- | cakeside-ios.xcodeproj/project.pbxproj | 4 | ||||
| -rw-r--r-- | cakeside-ios/cakeside-ios-Info.plist | 10 | ||||
| -rw-r--r-- | cakeside-ios/controllers/LoginViewController.m | 1 | ||||
| -rw-r--r-- | cakeside-logo.png | bin | 0 -> 8149 bytes |
4 files changed, 15 insertions, 0 deletions
diff --git a/cakeside-ios.xcodeproj/project.pbxproj b/cakeside-ios.xcodeproj/project.pbxproj index d8cab60..ca51d0b 100644 --- a/cakeside-ios.xcodeproj/project.pbxproj +++ b/cakeside-ios.xcodeproj/project.pbxproj @@ -31,6 +31,7 @@ CDE67AC517935C1C00B4742C /* CreationsTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CDE67AC317935C1C00B4742C /* CreationsTableViewController.xib */; }; CDE67ACB179364A600B4742C /* Cake.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE67ACA179364A600B4742C /* Cake.m */; }; CDE67AD0179375DA00B4742C /* placeholder.png in Resources */ = {isa = PBXBuildFile; fileRef = CDE67ACF179375DA00B4742C /* placeholder.png */; }; + CDE67AD21793807800B4742C /* cakeside-logo.png in Resources */ = {isa = PBXBuildFile; fileRef = CDE67AD11793807800B4742C /* cakeside-logo.png */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -78,6 +79,7 @@ CDE67AC9179364A600B4742C /* Cake.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cake.h; sourceTree = "<group>"; }; CDE67ACA179364A600B4742C /* Cake.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Cake.m; sourceTree = "<group>"; }; CDE67ACF179375DA00B4742C /* placeholder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = placeholder.png; sourceTree = "<group>"; }; + CDE67AD11793807800B4742C /* cakeside-logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "cakeside-logo.png"; sourceTree = "<group>"; }; CE65D4B28521438085302B5E /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ @@ -110,6 +112,7 @@ CDCB344F1793405E00A25F1E = { isa = PBXGroup; children = ( + CDE67AD11793807800B4742C /* cakeside-logo.png */, CDCB34611793405E00A25F1E /* cakeside-ios */, CDCB34851793405E00A25F1E /* cakeside-iosTests */, CDCB345A1793405E00A25F1E /* Frameworks */, @@ -316,6 +319,7 @@ CDCB34781793405E00A25F1E /* LoginViewController.xib in Resources */, CDE67AC517935C1C00B4742C /* CreationsTableViewController.xib in Resources */, CDE67AD0179375DA00B4742C /* placeholder.png in Resources */, + CDE67AD21793807800B4742C /* cakeside-logo.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/cakeside-ios/cakeside-ios-Info.plist b/cakeside-ios/cakeside-ios-Info.plist index 72d55a8..f254ccd 100644 --- a/cakeside-ios/cakeside-ios-Info.plist +++ b/cakeside-ios/cakeside-ios-Info.plist @@ -8,6 +8,16 @@ <string>${PRODUCT_NAME}</string> <key>CFBundleExecutable</key> <string>${EXECUTABLE_NAME}</string> + <key>CFBundleIcons</key> + <dict> + <key>CFBundlePrimaryIcon</key> + <dict> + <key>CFBundleIconFiles</key> + <array> + <string>cakeside-logo.png</string> + </array> + </dict> + </dict> <key>CFBundleIdentifier</key> <string>mokhan.ca.${PRODUCT_NAME:rfc1034identifier}</string> <key>CFBundleInfoDictionaryVersion</key> diff --git a/cakeside-ios/controllers/LoginViewController.m b/cakeside-ios/controllers/LoginViewController.m index 7e2a910..1fe9622 100644 --- a/cakeside-ios/controllers/LoginViewController.m +++ b/cakeside-ios/controllers/LoginViewController.m @@ -109,6 +109,7 @@ NSLog(@"%@", JSON); // check if login was successfull NSString *token = [JSON objectForKey:@"auth_token"]; + NSLog(token); if (!token || [token isEmpty]) { [self.HUD hide:YES]; diff --git a/cakeside-logo.png b/cakeside-logo.png Binary files differnew file mode 100644 index 0000000..f2b5757 --- /dev/null +++ b/cakeside-logo.png |
