A customizable simple iOS 8 push notification style control to show quick messages to the user.
- Make a Pod file and add following
source 'https://github.com/CocoaPods/Specs.git'
target '<TARGET_NAME>' do
pod 'HMCNotification', '~> 1.0'
end
[HMCNotification sharedInstance].titleFontColor = [UIColor yellowColor];
[HMCNotification sharedInstance].blurStyle = UIBlurEffectStyleLight;
And then show the notification using:
[HMCNotification showCustomPushWithTitle:@"Woohooo" message:@"Congrtaz, It all went successfully. Now you've become a part of iOS dev family" iconImageName:@"pushIconHappy"];
Default blur effect with UIBlurEffectStyleExtraLight
Default font color black