上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页
摘要: 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 雨筱逸悠 阅读(559) 评论(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 雨筱逸悠 阅读(149) 评论(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 雨筱逸悠 阅读(94) 评论(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 雨筱逸悠 阅读(33) 评论(0) 推荐(0) 编辑
摘要: autorelease 是一个双向链表,保存了子page和父page autorelease(obj) obj在作用域中创建时,retainCount已经为1,需要使用release进行释放,而autoreleasepool通过一个*next的指针链表(单向),记录了这个对象 *next 为 id 阅读全文
posted @ 2021-06-08 10:11 雨筱逸悠 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 条件锁 条件锁 是 (互斥锁 + 运行条件) https://blog.csdn.net/chengonghao/article/details/51779279 该文章对条件锁的场景和作用说明比较详细 场景:A线程执行依赖条件P,B线程可以提供条件P,但是由于使用单纯的互斥锁,A已经占用了锁,B被 阅读全文
posted @ 2021-06-02 15:43 雨筱逸悠 阅读(67) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-02 11:39 雨筱逸悠 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页