Skip to content

Commit

Permalink
Made reference to tableView weak
Browse files Browse the repository at this point in the history
  • Loading branch information
chbeer committed Sep 3, 2014
1 parent fd85d5d commit ea73e6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/CBUITableViewDataSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@


@interface CBUITableViewDataSource : NSObject <CBUITableViewDataSource,UITableViewDataSource> {
UITableView *_tableView;
UITableView __weak *_tableView;

id<CBUITableViewDataSourceDelegate> __weak _delegate;
}

@property (nonatomic, strong) IBOutlet UITableView *tableView;
@property (nonatomic, weak) IBOutlet UITableView *tableView;

@property (nonatomic, weak) id<CBUITableViewDataSourceDelegate> delegate;

Expand Down

0 comments on commit ea73e6b

Please sign in to comment.