上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页
摘要: ///去掉padding UITextView.textContainer.lineFragmentPadding = 0; UITextView.textContainerInset = UIEdgeInsetsZero; /// 限制行数? UITextView.textContainer.ma 阅读全文
posted @ 2021-11-29 18:23 雨筱逸悠 阅读(37) 评论(0) 推荐(0) 编辑
摘要: https://juejin.cn/post/7012812953627918349 阅读全文
posted @ 2021-11-18 10:12 雨筱逸悠 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 这个问题的话,查了很多资料,总的来说就是C++版本的问题,新版本的namespace结构变化了,C++库的层级结构变化了 1.config.h HASH_MAP_H HASH_SET_H 新版本的头文件查找修改为<unordered_map>,其他以 tr1/xxx 引入的 也改为 xxx HASH 阅读全文
posted @ 2021-11-02 11:32 雨筱逸悠 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 1.gitlab上新建仓库 2.创建好master分支 3.cd到对应的目录,切换到对应的分支,下面以 twitter-text 这个库为例: git remote add twitter-text https://github.com/twitter/twitter-text.git (如果要删除 阅读全文
posted @ 2021-11-01 16:19 雨筱逸悠 阅读(619) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-10-25 15:51 雨筱逸悠 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 参考链接 https://www.jianshu.com/p/abc039e13209 git rm -r --cached XXXX //移除被追踪的文件或目录 commit代码 更新.gitignore 文件 commit代码 阅读全文
posted @ 2021-10-18 11:37 雨筱逸悠 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1. 当设计一个类时,如果需要将数据处理后给到外部对象,那么如果说不是特别需要(隐私数据),那么应该要携带上原始数据和数据来源,这样外部可以知道更多内容,做出不同的处理。 2. 当一个问题不知道如何处理时,将你的疑惑、阻碍、麻烦、难点一一列举出来进行分析,找到一个能消灭最多点的方案 3. 慎重的对待 阅读全文
posted @ 2021-08-25 10:33 雨筱逸悠 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 如图所示,点击到对应的位置后,则可以正常拖动调节宽度了,这个是Xcode的BUG吗? 阅读全文
posted @ 2021-08-16 17:25 雨筱逸悠 阅读(116) 评论(0) 推荐(0) 编辑
摘要: @interface ErrorObject : NSObject - (int)sum:(int)a with:(int)b; - (int)returnSelf:(int)a; @end @implementation ErrorObject - (int)returnSelf:(int)a { 阅读全文
posted @ 2021-06-15 14:56 雨筱逸悠 阅读(95) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad { [super viewDidLoad]; int a[] = {72, 6, 57, 88, 60, 42, 83, 73, 48, 85}; int length = sizeof(a) / sizeof(int); sort(a, 0, length) 阅读全文
posted @ 2021-06-08 17:47 雨筱逸悠 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页