Skip to content

Commit

Permalink
Updating the header.
Browse files Browse the repository at this point in the history
  • Loading branch information
spoletto committed Dec 11, 2011
1 parent b86e9ac commit 7612838
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SPUserResizableView/SPUserResizableView.h
Expand Up @@ -29,13 +29,13 @@ typedef struct SPUserResizableViewAnchorPoint {
// Used to determine which components of the bounds we'll be modifying, based upon where the user's touch started. // Used to determine which components of the bounds we'll be modifying, based upon where the user's touch started.
SPUserResizableViewAnchorPoint anchorPoint; SPUserResizableViewAnchorPoint anchorPoint;


NSObject <SPUserResizableViewDelegate> *delegate; id <SPUserResizableViewDelegate> delegate;
} }


@property (nonatomic, assign) NSObject <SPUserResizableViewDelegate> *delegate; @property (nonatomic, assign) id <SPUserResizableViewDelegate> delegate;


// Will be retained and added as a subview. // Will be retained as a subview.
@property (nonatomic, retain) UIView *contentView; @property (nonatomic, assign) UIView *contentView;


// Default is 48.0 for each. // Default is 48.0 for each.
@property (nonatomic) CGFloat minWidth; @property (nonatomic) CGFloat minWidth;
Expand All @@ -55,7 +55,7 @@ typedef struct SPUserResizableViewAnchorPoint {
// Called when the resizable view receives touchesBegan: and activates the editing handles. // Called when the resizable view receives touchesBegan: and activates the editing handles.
- (void)userResizableViewDidBeginEditing:(SPUserResizableView *)userResizableView; - (void)userResizableViewDidBeginEditing:(SPUserResizableView *)userResizableView;


// Called when the resizable view receives touchesEnded: // Called when the resizable view receives touchesEnded: or touchesCancelled:
- (void)userResizableViewDidEndEditing:(SPUserResizableView *)userResizableView; - (void)userResizableViewDidEndEditing:(SPUserResizableView *)userResizableView;


@end @end

0 comments on commit 7612838

Please sign in to comment.