
iOS OC开发
文章平均质量分 73
迷途de小狼
还可以
展开
-
Xcode 新建iOS13以下项目(OC、Swift)
1.新建项目2.解决ios13以下运行闪退问题1)删除SceneDelegate.swift官方文档:In iOS 13 and later, use UISceneDelegate objects to respond to life-cycle events in a scene- based app.这个场景呢,如果不使用ipad的多窗口就不建议使用2)删除 Mai...原创 2020-03-12 11:13:30 · 3322 阅读 · 0 评论 -
UISearchBar 修改textField背景颜色
self.searchBar.backgroundColor = leftMainColor; self.searchBar.backgroundImage=[[UIImage alloc]init]; if (@available(iOS 13.0, *)){ self.searchBar.searchTextField.backgroundColor...原创 2020-03-09 17:23:34 · 1042 阅读 · 0 评论 -
OC build 提示 PRODUCT_NAME undefined
解决方案:项目 -> Build Setting , 搜索Product Name ,添加$(TARGET_NAME) 即可原创 2020-02-05 10:50:42 · 1566 阅读 · 0 评论 -
正确使用cocoaPods 在OC中集成Charts第三方库
1.安装cocoaPods2.新建一个OC工程3.pod init 到 vi Podfile # Uncomment the next line to define a global platform for your project platform :ios, '11.2'target 'Chartsssss' do # Uncomment the next line if you...原创 2018-05-29 10:14:15 · 3320 阅读 · 0 评论