美文网首页iOS高手
iOS开发小知识备忘录

iOS开发小知识备忘录

作者: 随行的羊 | 来源:发表于2019-04-30 11:54 被阅读0次

代码备忘:

1、点击空白处,收起键盘

UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideKeyBoard)];
tapGestureRecognizer.cancelsTouchesInView = NO;
[self.tableView addGestureRecognizer:tapGestureRecognizer];

- (void)hideKeyBoard {

    [self.textField endEditing:YES];
}

2、拨打电话

NSString *phoneStr = @"telprompt:400-8888888";
NSURL *url  =[NSURL URLWithString:phoneStr];
[[UIApplication sharedApplication] openURL:url];

相关文章

网友评论

    本文标题:iOS开发小知识备忘录

    本文链接:https://www.haomeiwen.com/subject/kyimnqtx.html