forked from sinuos-zz/shadowsocks-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSWBTabView.h
More file actions
32 lines (24 loc) · 718 Bytes
/
SWBTabView.h
File metadata and controls
32 lines (24 loc) · 718 Bytes
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
29
30
31
32
//
// SWBTabView.h
// SWBuaWeb
//
// Created by clowwindy on 11-6-10.
// Copyright 2011年 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SWBSmallCloseButton.h"
@protocol SWBTabViewDelegate <NSObject>
@required
-(void) tabViewDidClickCloseButton:(id)sender;
@end
@interface SWBTabView : UIControl {
SWBSmallCloseButton *closeButton;
UILabel *titleLabel;
UIActivityIndicatorView *indicatorView;
}
@property (nonatomic, assign) BOOL focused;
@property (nonatomic, weak) id<SWBTabViewDelegate> delegate;
@property (nonatomic, strong) IBOutlet NSString *title;
@property (nonatomic, assign) BOOL loading;
@property (weak, nonatomic, readonly) UILabel *titleLabel;
@end