如何在iPhone中设计Android Pattern Lock Screen

时间:2012-07-25 10:05:17

标签: iphone objective-c ios xcode lockscreen

我想在我的iphone应用程序中创建一个Android模式锁屏... 但我不知道该怎么做...我搜索了很多但没有得到...... 任何人都可以知道如何在iPhone中做到这一点??? Plz帮我解决了我的问题...... .thanx

- (void)viewDidLoad
 {

  tapCount=0;
  attempt=0; 
  password=@"";

tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(cancel:)];
[self.view addGestureRecognizer:tap];
[self.navigationController.navigationBar setHidden:YES];



[super viewDidLoad];
self.passwordSet=NO;
// Do any additional setup after loading the view.
}

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

好吧,IOS的android模式锁可以使用提供的示例代码here

来完成