摘要:
对于点击tableViewCell,调用打电话的功能,按照一般的方法,使用Appdelegate的OpenUrl的方法,使用前先使用UIAlertView展示,让用户选择是否拨打,但是发现了个简单的方法,即 1.在属性中声明一个强引用的UIWebView(WKWebView) @propert... 阅读全文
摘要:
UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRect:_backView.bounds]; _backView.layer.masksToBounds = NO; _backView.layer.shadowCo... 阅读全文
摘要:
1.首先需要定义一个属性 @property (nonatomic, strong) UITableViewCell *prototypeCell; 2.在创建完tableView后加上如下代码 self.prototypeCell=[self.tableView dequeueReusab... 阅读全文