ios开发小技巧

作者: FengxinLi | 来源:发表于2015-05-22 18:18 被阅读99次

    1开启和关闭系统右滑返回手势

    self.navigationController.interactivePopGestureRecognizer.enabled = YES | NO;      手势有效与否

    2.UITextField/UITextView的焦点颜色设置(仅支持iOS7及以上版本)

    textField/textView.TintColor = YourColor;

    3我两个手指同时点击两个button会连续跳转两个页面,这样显然是不合理的,解决方法仅一行代码

    [button setExclusiveTouch:YES]; 苹果对这些细节的优化还是很棒的。

    4.在使用view的缩放的时候,layer.border.width随着view的放大,会出现锯齿化的问题,解决这个问题需要设置这个属性  self.layer.allowsEdgeAntialias

    相关文章

      网友评论

        本文标题:ios开发小技巧

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