Как позвонить на гугл страницу после тряски
Я пытался позвонить на страницу Google после встряхивания iPhone. Я пытался так
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if(event.type == UIEventSubtypeMotionShake)
{
[self shakemethod];
[self open];
}
}
-(void)shakemethod
{
CABasicAnimation *shake = [CABasicAnimation animationWithKeyPath:@"position"];
[shake setDuration:1.1];
[shake setRepeatCount:2];
[shake setAutoreverses:YES];
[shake setFromValue:[NSValue valueWithCGPoint:
CGPointMake(lockImage.center.x - 15,lockImage.center.y)]];
[shake setToValue:[NSValue valueWithCGPoint:
CGPointMake(lockImage.center.x + 15, lockImage.center.y)]];
[lockImage.layer addAnimation:shake forKey:@"position"];
}
-(void)open
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://google.co.in"]];
}
Два метода работают, но когда я встряхиваю iPhone, изображение встряхивания не отображается, но страница Google открыта. Так что, пожалуйста, помогите мне. Мне нужно, когда я встряхиваю мобильное устройство, сначала встряхните изображение, после того как встряхивание завершено, встряхивая Открыть страницу Google
Заранее спасибо.
1 ответ
Решение
Установите для delgate себя анимацию встряхивания, затем в конце анимации delgate вызывает метод open
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if(event.type == UIEventSubtypeMotionShake)
{
[self shakemethod];
}
}
-(void)shakemethod
{
CABasicAnimation *shake = [CABasicAnimation animationWithKeyPath:@"position"];
[shake setDuration:1.1];
[shake setRepeatCount:2];
[shake setAutoreverses:YES];
//set animation delgate to self
[shake setDelegate:self];
[shake setFromValue:[NSValue valueWithCGPoint:
CGPointMake(lockImage.center.x - 15,lockImage.center.y)]];
[shake setToValue:[NSValue valueWithCGPoint:
CGPointMake(lockImage.center.x + 15, lockImage.center.y)]];
[lockImage.layer addAnimation:shake forKey:@"position"];
}
//when animation will finish call the open method
-(void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
{
[self open];
}
-(void)open
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://google.co.in"]];
}
Надеюсь, это то, что вы хотите.