A light wight UI package contains local notification, progress HUD, toast, with blur effect
, elegant API
and themes Support
for iOS. Inspired by Apple's process HUD, notifications and Android's toast.
Style | Light | Dark |
---|---|---|
Notification | ||
Progress | ||
Toast |
Style | Light | Dark |
---|---|---|
Notification | ||
Progress | ||
Toast |
- If you want use all three of the indicators, use
FTIndicator
. - Also,
FTNotificationIndicator
,FTProgressIndicator
andFTToastIndicator
are able to work separately. Use them all your will.
- FTIndicator
- FTNotificationIndicator
- FTProgressIndicator
- FTToastIndicator
- clone this repo.
- Simply drop the '/FTIndicator' folder into your project.
- import 'FTIndicator.h'
FTIndicator
is available through CocoaPods. To install it, simply add the following line to your Podfile:
- FTIndicator, 3 in 1
pod 'FTIndicator'
- FTNotificationIndicator
pod 'FTNotificationIndicator'
- FTProgressIndicator
pod 'FTProgressIndicator'
- FTToastIndicator
pod 'FTToastIndicator'
- show with image
[FTIndicator showNotificationWithImage:[UIImage imageNamed:@"maps_icon"]
title:@"Here is a notification title."
message:@"Here is a notification message."];
- show without image
[FTIndicator showNotificationWithTitle:@"Here is a notification title."
message:@"Here is a notification message."];
- dismiss manually
[FTIndicator dismissNotification];
- show progress
[FTIndicator showProgressWithmessage:@"Here is a progress message."];
- show success
[FTIndicator showSuccessWithMessage:@"Here is a success message."];
- show info
[FTIndicator showInfoWithMessage:@"Here is a info message."];
- show error
[FTIndicator showErrorWithMessage:@"Here is a error message."];
- dismiss manually
[FTIndicator dismissProgress];
- show with image
[FTIndicator showToastMessage:@"Short Toast."];
- dismiss manually
[FTIndicator dismissToast];
- show with image
[FTNotificationIndicator showNotificationWithImage:[UIImage imageNamed:@"maps_icon"]
title:@"Here is a notification title."
message:@"Here is a notification message."];
- show without image
[FTNotificationIndicator showNotificationWithTitle:@"Here is a notification title."
message:@"Here is a notification message."];
- dismiss manually
[FTNotificationIndicator dismiss];
- show progress
[FTProgressIndicator showProgressWithmessage:@"Here is a progress message."];
- show success
[FTProgressIndicator showSuccessWithMessage:@"Here is a success message."];
- show info
[FTProgressIndicator showInfoWithMessage:@"Here is a info message."];
- show error
[FTProgressIndicator showErrorWithMessage:@"Here is a error message."];
- dismiss manually
[FTProgressIndicator dismiss];
- show with image
[FTToastIndicator showToastMessage:@"Short Toast."];
- dismiss manually
[FTToastIndicator dismiss];
FTIndicator
is available under the MIT license. See the LICENSE file for more info.FTNotificationIndicator
is available under the MIT license. See the LICENSE file for more info.FTProgressIndicator
is available under the MIT license. See the LICENSE file for more info.FTToastIndicator
is available under the MIT license. See the LICENSE file for more info.