You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
416 B
16 lines
416 B
//
|
|
// APBDTFUploadTostView.h
|
|
// APBToygerFacade
|
|
//
|
|
// Created by richard on 28/02/2018.
|
|
// Copyright © 2018 DTF. All rights reserved.
|
|
//
|
|
#import <UIKit/UIKit.h>
|
|
@interface APBDTFUploadToastView : UIView
|
|
|
|
@property(nonatomic,strong)UIActivityIndicatorView* indicator;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame;
|
|
|
|
- (void)andSubViewWithFrame:(CGRect)frame AndText:(NSString *)text andStartY:(float)startY;
|
|
@end
|