2013-08-07 54 views
0

我有一個tableview中,並有在它元素的負荷,當我向下滾動,它不會留在我離開滾動,再次去到頂部。UITableView滾動,但不是預期的?

如何解決?

tableView = [[UITableView alloc]init]; 
    tableView.frame = CGRectMake(0,66 ,320.0, 768.0); 
    tableView.delegate = self; 
    tableView.dataSource = self; 

    [self addSubview:tableView]; 

我行高度爲110

+0

我覺得你的tableview是比實際可見大。 請分享一些代碼。 – Suryakant

+0

我已經添加代碼 – erdemgc

+0

看到我告訴你,你的表視圖高度爲更多的可視面積。 請檢查我的答案。 – Suryakant

回答

0

table大小比爲table可視面積。你的表

tableView.frame = CGRectMake(0,66 ,320.0, 768.0); // here is the problem 

變化改變高度查看多達可見區域(比方說,如果你的表是在整個屏幕的iPhone 5)

tableView.frame = CGRectMake(0,66 ,320.0, 548.0) // set according your need.