我有一个 UITableViewController ,其中包含用于我的 UITableViewCell 的自定义类。我在这个 UITableViewCell 上有一个 UIImageView 和一个 UILabel 。
我希望 UITableViewCell 上的内容在屏幕上高于某个 y 值时变得更加半透明/透明,这样你就可以得到类似于 Rdio 的“淡入淡出效果”应用:
MyUIViewController.h
@property (strong, nonatomic) IBOutlet UITableView *tableview;
MyUIViewController.m
@synthesize tableview;
- (void)scrollViewDidScrollUIScrollView *)scrollView {
NSArray *listOfVisibleCells = tableview.visibleCells;
for (int i=0; i<[listOfVisibleCells count]; i++) {
MTTableViewCell *cell = [listOfVisibleCells objectAtIndex:i];
/* Smooth fade out */
if (scrollView.contentOffset.y > (cell.frame.origin.y + 10)) {
[cell.companyImage setAlpha:0.7];
}
if (scrollView.contentOffset.y > (cell.frame.origin.y + 20)) {
[cell.companyImage setAlpha:0.5];
}
if (scrollView.contentOffset.y > (cell.frame.origin.y + 30)) {
[cell.companyImage setAlpha:0.3];
}
if (scrollView.contentOffset.y > (cell.frame.origin.y + 40)) {
[cell.companyImage setAlpha:0.1];
}
/* Fade in */
if (scrollView.contentOffset.y < (cell.frame.origin.y + 10)) {
[cell.companyImage setAlpha:1.0];
}
}
}
Best Answer-推荐答案 strong>
这一行:
if (scrollView.contentOffset.y > ((i*90)+30) ) {
应该是:
if (scrollView.contentOffset.y > (cell.frame.origin.y + 30)) {
关于ios - 获取每个 UITableViewCell 屏幕上的当前 y 值位置,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23325835/
|