Skip to content

Commit

Permalink
Clean up private headers
Browse files Browse the repository at this point in the history
  • Loading branch information
CooperRS committed Nov 20, 2016
1 parent 616f709 commit 3013632
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions RMActionController/Actions/RMAction.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ @interface RMAction ()

@property (nonatomic, strong, readwrite) UIView *view;

@property (nonatomic, strong, readwrite) NSString *title;
@property (nonatomic, strong, readwrite) UIImage *image;

@end

@implementation RMAction
Expand Down
2 changes: 0 additions & 2 deletions RMActionController/Private/RMAction+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

@property (nonatomic, weak, readwrite) RMActionController *controller;

@property (nonatomic, strong, readwrite) NSString *title;
@property (nonatomic, strong, readwrite) UIImage *image;
@property (nonatomic, assign, readwrite) RMActionStyle style;

@property (nonatomic, copy) void (^handler)(RMActionController *controller);
Expand Down
4 changes: 0 additions & 4 deletions RMActionController/Private/RMActionController+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

@interface RMActionController ()

@property (nonatomic, strong) NSMutableArray *additionalActions;
@property (nonatomic, strong) NSMutableArray *doneActions;
@property (nonatomic, strong) NSMutableArray *cancelActions;

@property (nonatomic, strong) UIView *backgroundView;
@property (nonatomic, assign) BOOL hasBeenDismissed;

Expand Down
4 changes: 4 additions & 0 deletions RMActionController/RMActionController.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ @interface RMActionController () <UIViewControllerTransitioningDelegate, UIPopov

@property (nonatomic, assign, readwrite) RMActionControllerStyle style;

@property (nonatomic, strong) NSMutableArray *additionalActions;
@property (nonatomic, strong) NSMutableArray *doneActions;
@property (nonatomic, strong) NSMutableArray *cancelActions;

@property (nonatomic, strong) UIView *topContainer;
@property (nonatomic, strong) UIView *bottomContainer;

Expand Down

0 comments on commit 3013632

Please sign in to comment.