project_files/HedgewarsMobile/Classes/MGSplitViewController/MGSplitDividerView.h
branchios-revival
changeset 11115 3729ac42189b
parent 8441 a00b0fa0dbd7
equal deleted inserted replaced
11114:6a0bd9c6cc82 11115:3729ac42189b
     8 
     8 
     9 #import <UIKit/UIKit.h>
     9 #import <UIKit/UIKit.h>
    10 
    10 
    11 @class MGSplitViewController;
    11 @class MGSplitViewController;
    12 @interface MGSplitDividerView : UIView {
    12 @interface MGSplitDividerView : UIView {
    13     MGSplitViewController *splitViewController;
    13 	MGSplitViewController *__unsafe_unretained splitViewController;
    14     BOOL allowsDragging;
    14 	BOOL allowsDragging;
    15 }
    15 }
    16 
    16 
    17 @property (nonatomic, assign) MGSplitViewController *splitViewController; // weak ref.
    17 @property (nonatomic, unsafe_unretained) MGSplitViewController *splitViewController; // weak ref.
    18 @property (nonatomic, assign) BOOL allowsDragging;
    18 @property (nonatomic, assign) BOOL allowsDragging;
    19 
    19 
    20 - (void)drawGripThumbInRect:(CGRect)rect;
    20 - (void)drawGripThumbInRect:(CGRect)rect;
    21 
    21 
    22 @end
    22 @end