UITableview尝试scrollToTop但没有(指示器试图上升,奇怪。) - 视频

时间:2014-05-04 01:59:41

标签: ios objective-c uitableview

所以我一直在使用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;在"抽屉里面#34;

1 个答案:

答案 0 :(得分:1)

找到了解决方案!!,如果你正在使用ECSlidingViewController,那么你必须拥有yourtableview.scrollstotop = NO;在“抽屉”里面