ECSlidingViewController

ECSlidingViewController

因此,我一直在研究UITableView,但无法单击状态栏来向上滚动,但是似乎它正在尝试向上滚动,但事实并非如此。

在这里,您可以看到它的视频(因为它太笨拙所以决定使用mp4而不是GIF)
http://i.gyazo.com/4c7be7437116e420411ac879b6d0d784.mp4

如果您观看视频,可以看到右侧的指示器尝试向上滚动,但不是吗?有没有人经历过类似的事情?

我也在使用ECSlidingViewController

我当前的代码
呼叫-viewDidLoad

-(void)setTableViewStuff {

    [self.myTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];

    [self.myTableView registerNib:[UINib nibWithNibName:@"YouTubeTableCell" bundle:nil] forCellReuseIdentifier:CellIdentifier];


       self.myScrollView.scrollsToTop = NO;
    self.myTableView.scrollsToTop = YES;
}


表格查看代码

#pragma mark - Table View



- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 256;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return myVideoTitles.count;
}



// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    YouTubeTableCell *cell = (YouTubeTableCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];


    if (cell == nil) {
        //cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
        //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    if (indexPath.section == 0) {
        NSString* thumbnailURL = myVideoThumbnails[indexPath.row];
     [cell.myThumbnail setImageWithURL:[NSURL URLWithString:[thumbnailURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]] placeholderImage:nil];

    }
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
    return NO;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

}


编辑:
找到了解决方案!,如果您使用的是ECSlidingViewController,则必须具有yourtableview.scrollstotop = NO;。里面的“抽屉”

最佳答案

找到了解决方案!,如果您使用的是ECSlidingViewController,则必须具有yourtableview.scrollstotop = NO;。里面的“抽屉”

07-24 21:21