摘要:直接使用 btn.titleLabel.textAlignment = NSTextAlignmentLeft; 是没有作用的 添加偏移量是为了不让文字紧贴按钮边缘 更美观一些 也可以给文字加空格,比如 @"这是一个按钮" 改成 @" 这是一个按钮"也可以实现
阅读全文
摘要:结果 MyArr = @[a4,a2,a3];
阅读全文
摘要:for (UIViewController *vc in self.navigationController.viewControllers) { if ([vc isKindOfClass:[MyViewController class]]) { [self.navigationController popToViewController:vc animated:Y...
阅读全文
摘要:- (NSString *)getUUID { CFUUIDRef uuidObj = CFUUIDCreate(nil); //create a new UUID NSString * uuidString = (__bridge_transfer NSString *)CFUUIDCreateString(nil, uuidObj); CFRele...
阅读全文
摘要://项目要求tableView滚动到底部就自动加载下一页,UITableView继承自UIScrollView 所以可以在//scrollViewDidEndDecelerating这个方法中进行判断操作 1 -(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{ 2 if (scrollView == myScroll...
阅读全文
摘要:- (void)viewDidLoad { [super viewDidLoad]; //加载本地web页面 web = [[UIWebView alloc]init]; web.backgroundColor = [UIColor clearColor]; web.delegate =self;
阅读全文
摘要://包含数字和字母的密码长度6-16位 -(BOOL) validatePassword:(NSString *)password { //密码正则表达式 NSString *passwordRegex = @"^(?=.*?[a-zA-Z])(?=.*?[0-9])[a-zA-Z0-9]{6,16
阅读全文