Permalink
Cannot retrieve contributors at this time
Fetching contributors…

/* | |
* ATMHudQueueItem.h | |
* ATMHud | |
* | |
* Created by Marcel Müller on 2011-03-01. | |
* Copyright (c) 2010-2011, Marcel Müller (atomcraft) | |
* All rights reserved. | |
* | |
* https://github.com/atomton/ATMHud | |
*/ | |
#import "ATMHud.h" | |
@interface ATMHudQueueItem : NSObject | |
@property (nonatomic, strong) NSString *caption; | |
@property (nonatomic, strong) UIImage *image; | |
@property (nonatomic, assign) BOOL showActivity; | |
@property (nonatomic, assign) ATMHudAccessoryPosition accessoryPosition; | |
@property (nonatomic, assign) UIActivityIndicatorViewStyle activityStyle; | |
@end |