forked from jessegrosjean/NOTTaskPaperForIOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButton.h
More file actions
executable file
·23 lines (16 loc) · 827 Bytes
/
Copy pathButton.h
File metadata and controls
executable file
·23 lines (16 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Button.h
// PlainText
//
// Created by Jesse Grosjean on 6/23/10.
//
@interface Button : UIButton {
UIImage *savedImage;
CGFloat brightness;
}
- (void)setImage:(UIImage *)image;
+ (Button *)buttonWithImage:(UIImage *)image color:(UIColor *)color accessibilityLabel:(NSString *)accessibilityLabel accessibilityHint:(NSString *)accessibilityHint target:(id)target action:(SEL)action edgeInsets:(UIEdgeInsets)edgeInsets;
+ (Button *)buttonWithImage:(UIImage *)image accessibilityLabel:(NSString *)accessibilityLabel accessibilityHint:(NSString *)accessibilityHint target:(id)target action:(SEL)action edgeInsets:(UIEdgeInsets)edgeInsets;
+ (Button *)buttonWithTitle:(NSString *)title target:(id)target action:(SEL)action edgeInsets:(UIEdgeInsets)edgeInsets;
@property (nonatomic, assign) CGFloat brightness;
@end