我想要达到的是:
滚动UISlider时,在显示当前滑块值时会淡出一个小的助手视图。释放滑块时,助手视图会淡出。最简单的方法是什么?
最佳答案
大家好,您只需要看一下本示例中的代码,就可以在iPhone中使用此类显示popupview。
http://blog.chrismiles.info/2010/12/cmpoptipview-custom-popup-view-for-ios.html
希望对您有帮助。
:)
编辑:
-(void)addPopUpView{
Yourview.transform = CGAffineTransformMakeScale(1.3, 1.3);
objMakeOfferView.view.alpha = 0;
[UIView animateWithDuration:.35 animations:^{
Yourview.alpha = 0.94;
Yourview.transform = CGAffineTransformMakeScale(1, 1);
}];
objMakeOfferView.view.frame=CGRectMake(0, 0, 120, 80);///set frame which you required
[self.view addSubview:Yourview];
}
-(void)removePopUpView{
[UIView animateWithDuration:.35 animations:^{
Yourview.transform = CGAffineTransformMakeScale(1.3, 1.3);
Yourview.alpha = 0.0;
} completion:^(BOOL finished) {
[Yourview removeFromSuperview];
}];
}
也可以使用其他类型的TransitionAnimation。
:)