//pop到底个之前的第x页面
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES];
//跳转到该应用的系统设置
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
if([[UIApplication sharedApplication] canOpenURL:url]) {
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:url];
}
//设置父视图透明度而不影响子视图
view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5];
//改变textfield占位字颜色
[textField setValue:[UIColor greenColor] forKeyPath:@"_placeholderLabel.textColor"];
//修改textField字间距
NSDictionary *attrsDictionary = @{NSFontAttributeName: textField.font,
NSKernAttributeName:[NSNumber numberWithFloat:10.0f]};
textField.attributedText=[[NSAttributedString alloc]initWithString:textField.text
attributes:attrsDictionary];
//textview光标在第一行
self.automaticallyAdjustsScrollViewInsets = NO;
//给view某个角设置圆角
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:_confirmButton.bounds
byRoundingCorners:(UIRectCornerBottomLeft | UIRectCornerBottomRight)
cornerRadii:CGSizeMake(5,5)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = _confirmButton.bounds;
maskLayer.path = maskPath.CGPath;
_confirmButton.layer.mask = maskLayer;
//限制中英文字符串长度
- (int)convertToInt:(NSString *)strtemp {
int strlength = 0;
charchar *p = (char*)[strtemp cStringUsingEncoding:NSUnicodeStringEncoding];
for (int i=0 ; i<[strtemp lengthOfBytesUsingEncoding:NSUnicodeStringEncoding]; i++) {
if (*p) {
p++;
strlength++;
} else {
p++;
}
}
return (strlength+1)/2;
}
//判断字符串是否为纯数字
if (![self isPureInt:self.inputTextField.text]) {
WBShowToastMessage(@"请输入正确的QQ号");
return;
}
- (BOOL)isPureInt:(NSString*)string{
NSScanner *scan = [NSScanner scannerWithString:string];
int val;
return [scan scanInt:&val] && [scan isAtEnd];
}
// 密码不能包含中文或者中文符号
for (int i = 0; i < _userPwdTextField.text.length; i++) {
NSRange range = NSMakeRange(i, 1);
NSString *subString = [_userPwdTextField.text substringWithRange:range];
const charchar *cString = [subString UTF8String];
if (strlen(cString) == 3) {
[self shake:_pwdBgImage];
_reminderLabel.text = @"密码不能包含中文或者中文符号";
_reminderLabel.textColor = ReminderColor; return;
}
}
iOS - 项目中经常用到的小方法大全(持续更新)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 成长记录-连载(三十六) ——我的第一篇五千字长文,说了什么,你一定想不到 并不是不想每天写公众号,而是之前思考怎...
- 1.解决建立在scrollView上及其子类上的按钮的点击效果不明显的方法(_talbelView为scrollV...
- 在项目中合理的使用一些宏,可以很大的提高代码效率,代码简洁度!下面我就列举一些我常用的宏,随着项目的进行,我会持续...