我想讓UIImageView在向下滾動時關閉第一個單元格。因此,要做到這一點,我想我可能會嘗試:獲取UITableView實時座標
CGRect rect = [foldersTable convertRect:[foldersTable rectForRowAtIndexPath:indexPath2] toView:[foldersTable superview]];
imageView.frame=rect;
的問題是,矩形是不更新直播我滾動表視圖。我在哪裏放置上述代碼,以便在滾動表格時進行更新?或者我錯過了其他什麼?
你是說它不是「活」的,因爲當你滾動表時你所得到的值不會改變?還是你問這個代碼放在哪裏,以便在表格的滾動偏移改變時調用它? –
有一個類似的帖子,其得到了工作答案: [http://stackoverflow.com/questions/687793/determine-coordinates-of-a-uitableviewcell-while-scrolling][1] [1]:http://stackoverflow.com/questions/687793/determine-coordinates-of-a-uitableviewcell-while-scrolling – Pan