【发布时间】:2012-02-02 17:27:32
【问题描述】:
在移动版 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];
谢谢
【问题讨论】:
标签: objective-c uiview uibutton core-animation uitouch