会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
YouNeedCourage
博客园
首页
新随笔
联系
管理
订阅
[置顶]
开发过程中用到的第三方库
摘要: 1.YZInpitView(类似短信、微信和qq聊天的输入框) 2.SLPasswordInputView(一个密码输入控件,仿微信支付的密码输入框,很高的可定制性) 3.SDPhotoBrowser( 非常简单易用的图片浏览器,模仿微博图片浏览器动感效果,综合了图片展示和存储等多项功能) 4.CY
阅读全文
posted @ 2017-04-07 14:11 YouNeedCourage
阅读(246)
评论(0)
推荐(0)
[置顶]
iOS开发过程中常用代码
摘要: 1.访问相机相册 2.自己封装的网络请求的调用 3.注册键盘弹出和消失的通知 4.设置tableView 5.获取当前的年月日等 6.UITableView嵌套UITextView时无法通过修改tableView的contentInset来让tableView自动上移,避免键盘遮挡textView,
阅读全文
posted @ 2017-02-04 16:08 YouNeedCourage
阅读(261)
评论(0)
推荐(0)
[置顶]
github上Trending推荐的优秀代码
摘要: 1.项目中常用的一些工具类 https://github.com/leeSmile/tools 2.一款日历插件 https://github.com/unixzii/Daysquare 3.模仿微信 https://github.com/zhengwenming/WeChat 4.几句代码快速集成
阅读全文
posted @ 2016-07-05 14:47 YouNeedCourage
阅读(1089)
评论(0)
推荐(0)
[置顶]
cocoachina精华帖子
摘要: iOS超全开源框架、项目和学习资料汇总--数据库、缓存处理、图像浏览、摄像照相视频音频篇 http://www.cocoachina.com/ios/20170215/18692.html 告别2016迎接2017,分享一些第三方插件 http://www.cocoachina.com/ios/20
阅读全文
posted @ 2016-03-16 19:57 YouNeedCourage
阅读(489)
评论(0)
推荐(0)
[置顶]
开发中遇到的的报错原因及解决办法
摘要: 1.linker command failed with exit code 1 (use -v to see invocation) 错误; 一种原因是因为导入头文件的时候导入了.m文件
阅读全文
posted @ 2016-01-25 13:21 YouNeedCourage
阅读(257)
评论(0)
推荐(0)
[置顶]
第三方开发者平台
摘要: paypal 开发者平台 https://developer.paypal.com/ioshttps://developer.paypal.com/webapps/developer/docs/integration/mobile/ios-integration-guide/paypal 中文官网 ...
阅读全文
posted @ 2015-12-16 18:31 YouNeedCourage
阅读(409)
评论(0)
推荐(0)
2022年3月9日
重拾iOS之cocoapod
摘要: 环境配置不再赘述 Podfile文件写法 platform :ios,'9.0' inhibit_all_warnings! target 'Learn' do pod 'Masonry' pod 'SDWebImage' end
阅读全文
posted @ 2022-03-09 12:41 YouNeedCourage
阅读(16)
评论(0)
推荐(0)
重拾iOS之Xcode13.2.1新建工程
摘要: 1.删除SceneDelegate.h和SceneDelegate.m文件; 2.删除APPDelegate中下面部分内容; #pragma mark - UISceneSession lifecycle 3.Main.StroyBoard入口去掉; 4.删除info.plist中Applicati
阅读全文
posted @ 2022-03-09 11:51 YouNeedCourage
阅读(125)
评论(0)
推荐(0)
2020年4月24日
解决UITabbar按钮超出tabbar区域无法点击的问题
摘要: #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UITabBar (Category) @property (nonatomic, weak) UIButton * btn; @end NS_ASSUME_NONNULL_END
阅读全文
posted @ 2020-04-24 09:34 YouNeedCourage
阅读(849)
评论(0)
推荐(0)
UITextView禁止长按弹出复制等
摘要: #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UITextView (HDUtil) @end NS_ASSUME_NONNULL_END #import "UITextView+HDUtil.h" @implementatio
阅读全文
posted @ 2020-04-24 09:32 YouNeedCourage
阅读(4047)
评论(0)
推荐(0)
2019年11月4日
iOS使用fastlane快捷打包测试上传fir
摘要: fastlane fastlane是iOS和Android开发人员的工具,可以自动执行繁琐的任务,例如生成屏幕截图,处理配置文件和发布应用程序。 GitHub "https://github.com/fastlane/fastlane" 官网 "https://fastlane.tools/" 安装
阅读全文
posted @ 2019-11-04 17:12 YouNeedCourage
阅读(416)
评论(0)
推荐(0)
2019年10月15日
解决mac上复制粘贴失效问题
摘要: 终端执行: 然后重启即可 https://www.jianshu.com/p/c961b8396bc4
阅读全文
posted @ 2019-10-15 10:41 YouNeedCourage
阅读(2909)
评论(0)
推荐(0)
2019年9月12日
透明图绘制背景(证件照换底色)
摘要: 致谢:感谢宝锋同学对方法一提供的思路;方法二则是完全是宝锋同学提供的代码。 方法一: 方法二:
阅读全文
posted @ 2019-09-12 09:22 YouNeedCourage
阅读(1637)
评论(0)
推荐(0)
2019年9月9日
UIActivityViewController直接分享文字
摘要: 参考:https://www.jianshu.com/p/b8a929192f8b
阅读全文
posted @ 2019-09-09 16:18 YouNeedCourage
阅读(888)
评论(0)
推荐(0)
2019年7月30日
fastlane快速打包上传fir
摘要: fastlane fastlane是iOS和Android开发人员的工具,可以自动执行繁琐的任务,例如生成屏幕截图,处理配置文件和发布应用程序。 GitHub "https://github.com/fastlane/fastlane" 官网 "https://fastlane.tools/" 安装
阅读全文
posted @ 2019-07-30 14:48 YouNeedCourage
阅读(1193)
评论(0)
推荐(0)
2019年4月10日
Jeankins+蒲公英自动打测试包
摘要: 参考文章:https://www.jianshu.com/p/ce36997919b4 最后一步“构建”的shell命令
阅读全文
posted @ 2019-04-10 17:44 YouNeedCourage
阅读(230)
评论(0)
推荐(0)
下一页
公告