Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Easier start and Typo fixed #1

Merged
merged 2 commits into from
Jun 11, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Classes/MessageBarManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
#import "AppDelegate.h"

// Constants
#import "UIConstants.h"
//#import "UIConstants.h"
#define kImageIconError @"icon-error.png"
#define kImageIconSuccess @"icon-success.png"
#define kImageIconInfo @"icon-info.png"

#define kMessageBarAlpha 0.96
#define kMessageBarPadding 10
Expand Down Expand Up @@ -380,7 +383,7 @@ + (UIImage*)iconImageForMessageType:(MessageBarMessageType)type
iconImage = [UIImage imageNamed:kImageIconError];
break;
case MessageBarMessageTypeSuccess:
iconImage = [UIImage imageNamed:kImageIconSucces];
iconImage = [UIImage imageNamed:kImageIconSuccess];
break;
case MessageBarMessageTypeInfo:
iconImage = [UIImage imageNamed:kImageIconInfo];
Expand Down
Binary file added Classes/icon-error.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Classes/icon-error@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Classes/icon-info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Classes/icon-info@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Classes/icon-success.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Classes/icon-success@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.