Advertisement
undeadhip

Untitled

Aug 20th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -(void)addFeedTableView {
  2.     ProfileFeedTableDataSource* dataSource = [ProfileFeedTableDataSource new];
  3.     dataSource.posts = self.pageInfo.posts;
  4.     dataSource.user = self.user;
  5.     dataSource.delegate = self;
  6.    
  7.     assert(self.presentCommentScreen);
  8.     dataSource.presentCommentScreen = self.presentCommentScreen;
  9.    
  10.     DKATableViewExtended* tableView = [DKATableViewExtended new];
  11.     tableView.strongDataSource = dataSource;
  12.     tableView.frame = self.contentView.bounds;
  13.     tableView.separatorStyle = UITableViewCellSelectionStyleNone;
  14.     tableView.delegate = dataSource;
  15.     [self.contentView addSubview:tableView];
  16.    
  17.     [self addSelectPanelWithIndex:0];
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement