blob: 64ff6ef4b5c5c5e56e394527dcf16e149e1bd5b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//
// UIView+Decoder.h
//
//
#import <UIKit/UIKit.h>
@interface UIView(Background)
- (void)setBackgroundImage;
@end
@interface UIView (Remixes)
- (void) changeFrame:(CGRect)frame overTimeInterval:(double)timeInterval;
- (void) fadeIn;
- (void) fadeOut;
- (void) fadeOutThenCallSelector:(SEL)selector delegate:(id)delegate;
- (void) removeSubviewWithTagIfExists:(int)theTag;
- (NSMutableDictionary *)fullDescription;
- (UIViewController *) firstAvailableUIViewController;
- (id) traverseResponderChainForUIViewController;
@end
@interface UISearchBar (iAutomation)
- (void) search;
@end
|