[ios] Added void block type.

This commit is contained in:
Ilya Grechuhin 2016-01-22 16:14:31 +03:00 committed by Sergey Yershov
parent 2594ad7f31
commit b7c7ce343c
2 changed files with 11 additions and 1 deletions

View file

@ -25,6 +25,16 @@ static inline CGFloat LengthCGPoint(CGPoint point)
+ (NSString *)className;
- (void)performAfterDelay:(NSTimeInterval)delayInSec block:(TMWMVoidBlock)block;
@end
@interface UIColor (HexColor)
+ (UIColor *)colorWithColorCode:(NSString *)colorCode;
+ (UIColor *)applicationBackgroundColor;
+ (UIColor *)applicationColor;
+ (UIColor *)navigationBarColor;
@end
@interface UIView (Coordinates)

View file

@ -66,7 +66,7 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
[self displayAlert:[MWMAlert point2PointAlertWithOkBlock:block needToRebuild:needToRebuild]];
}
- (void)presentNeedMigrationAlertWithOkBlock:(nonnull CloseAlertCompletion)block
- (void)presentNeedMigrationAlertWithOkBlock:(nonnull TMWMVoidBlock)block
{
[self displayAlert:[MWMAlert needMigrationAlertWithOkBlock:block]];
}