Advertisement
Guest User

Untitled

a guest
Dec 25th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @interface TestViewController : UIViewController<UITableViewDataSource, UITableViewDelegate, UIScrollViewDelegate>
  2.  
  3. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  4.  
  5. @end
  6.  
  7.  
  8. @implementation TestViewController
  9.  
  10. - (void)viewDidLoad
  11. {
  12.     [super viewDidLoad];
  13.    
  14.     self.boardListTableView.dataSource = self;
  15.     self.boardListTableView.delegate = self;
  16. }
  17.  
  18. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  19. {
  20.     NSLog(@"scroll");
  21. }
  22. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement