我的任务是在我的应用程序中使用验证码,它在我的移动应用程序中提供相同的验证过程,如网站验证码流程。
我的问题是在我的应用程序中开发或集成验证码。我的洞代码是用原生的iphone语言开发的。我已经在移动应用程序中搜索了很多验证码。但我没有找到任何参考。
所以请帮助我在不使用webview的情况下在我的应用程序中开发验证码。并为它提供一些代码或示例。
答案 0 :(得分:1)
使用它 http://iphonesdksnippets.com/post/2009/05/05/Add-text-to-image-%28UIImage%29.aspx 找到一个很好的背景图像为您的应用程序,并随机生成一些数字和/或文本。 不完全是验证码,但它可以解决。 希望它有所帮助!
答案 1 :(得分:0)
虽然没有必要在某些应用程序中添加Captcha,因为应用程序不像Web一样,所以,根据我的想法,没有必要在某些应用程序中附加Captcha以防止机器人,如果你需要把它嵌入...... 是的,这是可能的方法,请检查以下代码:
采取这些出路和变量:
NSArray *arrCapElements;
IBOutlet UILabel *Captcha_label;
IBOutlet UITextField *Captcha_field;
IBOutlet UILabel *Status_label;
和IBActions
as:
- (IBAction)Reload_Action:(id)sender;
- (IBAction)Submit_Action:(id)sender;
在情节提要中,为Captcha_label
选择字体名称为 Chalkduster 30.0 。
现在将arrCapElements
中的viewDidLoad()
指定为
arrCapElements = [[NSArray alloc]initWithObjects:@"0",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z",@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z", nil];
加载验证码的代码:
-(void)load_captcha{
@try {
CGFloat hue = ( arc4random() % 256 / 256.0 ); // 0.0 to 1.0
CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from white
CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from black
Captcha_label.backgroundColor = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];
//Captcha_label.textColor=[UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];
NSUInteger elmt1,elmt2,elmt3,elmt4,elmt5,elmt6;
elmt1 = arc4random() % [arrCapElements count];
elmt2= arc4random() % [arrCapElements count];
elmt3 = arc4random() % [arrCapElements count];
elmt4 = arc4random() % [arrCapElements count];
elmt5 = arc4random() % [arrCapElements count];
elmt6 = arc4random() % [arrCapElements count];
NSString *Captcha_string = [NSString stringWithFormat:@"%@%@%@%@%@%@",arrCapElements[elmt1-1],arrCapElements[elmt2-1],arrCapElements[elmt3-1],arrCapElements[elmt4-1],arrCapElements[elmt5-1],arrCapElements[elmt6-1]];
//NSLog(@" Captcha String : %@",Captcha_string);
Captcha_label.text = Captcha_string;
}
@catch (NSException *exception) {
NSLog(@"%@",exception);
}
}
重新加载行动:
- (IBAction)Reload_Action:(id)sender {
[self load_captcha];
}
检查验证码是否正确:
- (IBAction)Submit_Action:(id)sender {
NSLog(@"%@ = %@",Captcha_label.text,Captcha_field.text);
if([Captcha_label.text isEqualToString: Captcha_field.text]){
[self.view endEditing:YES];
Status_label.text =@"Success";
Status_label.textColor = [UIColor greenColor];
}else{
Status_label.text =@"Faild";
Status_label.textColor = [UIColor redColor];
}
}
它将如下所示: