我有一个UIButton
在UIViewController
应用程序打开时可以“淡入”查看的内容。 不过,我想让它UIButton
从左到右滑入。
我不知道如何让它从左到右滑入,我的尝试失败了,即使我已经把“淡入”的东西固定下来了。
你能给我什么帮助吗?谢谢!我可以根据需要添加更多代码-
视图控制器.h
@property (weak, nonatomic) IBOutlet UIButton *buttonOne;
视图控制器.m
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
NSTimer *timermovebutton = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(movebutton) userInfo:nil repeats:NO];
[timermovebutton fire];
}
-(void) movebuttontwo
{
buttonTwo.alpha = 0;
[UIView beginAnimations:Nil context:Nil];
[UIView setAnimationDelay:0.5];
[UIView setAnimationCurve:UIViewAnimationTransitionCurlUp];
[UIView setAnimationDelegate:self];
[UIView setAnimationDuration:1.0];
buttonTwo.alpha = 1.0;
[UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:context:)];
[UIView commitAnimations];
}