在移动版Safari中,当您点击下方导航栏添加书签,调出书签列表或选择页面时,点击按钮时会出现模糊的高亮显示。
1)这个小亮点叫什么? (它是webkit-tap-highlight吗?)是否存在这种效果的通用术语(我试图搜索这种类型的效果而无法想到你会称它为什么)?
2)我想在我的应用程序中的常规UIView中重新创建此效果。因此,当用户点击视图时,出现模糊点然后逐渐消失。我已经能够使用以下代码创建一个类似的效果(它产生一个纯灰色点)。
// Draw a gray circle where the touch occurred
UIView *touchView = [[UIView alloc] init];
[touchView setBackgroundColor:[UIColor grayColor]];
touchView.frame = CGRectMake(point.x-10, point.y-10, 15, 15);
touchView.layer.cornerRadius = 15;
[self addSubview:touchView];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
[touchView setAlpha:0.0];
[UIView commitAnimations];
[touchView release];
由于
答案 0 :(得分:2)
查看UIButton.showsTouchWhenHighlighted
。