equal
deleted
inserted
replaced
|
1 // |
|
2 // MGSplitDividerView.h |
|
3 // MGSplitView |
|
4 // |
|
5 // Created by Matt Gemmell on 26/07/2010. |
|
6 // Copyright 2010 Instinctive Code. |
|
7 // |
|
8 |
|
9 #import <UIKit/UIKit.h> |
|
10 |
|
11 @class MGSplitViewController; |
|
12 @interface MGSplitDividerView : UIView { |
|
13 MGSplitViewController *splitViewController; |
|
14 BOOL allowsDragging; |
|
15 } |
|
16 |
|
17 @property (nonatomic, assign) MGSplitViewController *splitViewController; // weak ref. |
|
18 @property (nonatomic, assign) BOOL allowsDragging; |
|
19 |
|
20 - (void)drawGripThumbInRect:(CGRect)rect; |
|
21 |
|
22 @end |