Files
transshift/TransmissionRPCClient/InfoMessage.h
2015-07-09 19:13:25 +03:00

21 lines
440 B
Objective-C

//
// InfoMessage.h
// test
//
// Created by Alexey Chechetkin on 09.07.15.
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface InfoMessage : UIView
+ (InfoMessage*)infoMessageWithSize:(CGSize)size;
- (void)showFromView:(UIView*)parentView;
- (void)showInfo:(NSString*)infoStr fromView:(UIView*)parentView;
- (void)showErrorInfo:(NSString*)errStr fromView:(UIView*)parentView;
@end