首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
seaBright
掘友等级
iOS
|
bzl
疯狂写bug中...
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
8
文章 8
沸点 0
赞
8
返回
|
搜索文章
seaBright
iOS @bzl
·
2年前
关注
2022 OC / RN 开发环境配置 homebrew ruby cocoapods
记录一下 homebrew 一句话安装 /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/...
1
评论
分享
seaBright
iOS @bzl
·
2年前
关注
Mac M1 升级 ventura 导致ssh 报错 no matching host key type found. Their offer: ssh-r
Unable to negotiate with XXXX port 22: no matching host key type found. Their offer: s...
4
4
分享
seaBright
赞了这篇文章
杰森陈
web前端工程师
·
3年前
关注
最新上架App Store 全流程
最新app到App Store,整理一份详细图文详解。项目是flutter项目上架到App Store,与原始的ios上架有些差别。...
313
51
分享
seaBright
赞了这篇文章
QYizhong
客户端研发工程师 @字节跳动
·
3年前
关注
西瓜视频iOS启动优化实践
启动是用户使用一款产品的第一印象,长时间的启动等待将会消磨用户的耐心。根据过往实验经验,若应用的启动时间减少,那么则能有效的降低0vv(启动后0播放量),因此启动耗时是西瓜...
68
16
分享
seaBright
关注了
QYizhong
iOS @bzl
seaBright
iOS @bzl
·
3年前
关注
记录 BUG 集合
xcrun: error: unable to find utility "simctl", not a developer tool or in PATH Xcode 1...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
算法基础 - 关于复杂度 O 表示法
如何评价一个算法的好坏 正确性\可读性\健壮性 时间复杂度: 估算程序指令的执行次数 空间复杂度: 估算所需占用的存储空间 大O 表示法 常数 O(1) 当N大道一定程度 ...
0
评论
分享
seaBright
赞了这篇文章
dddwncty
开发
·
6年前
关注
搞iOS的,面试官问Hash干嘛?原因远比我下面要介绍的多
一、了解hash的重要性在iOS开发中随处可见Hash的身影,难道我们不好奇吗?下图只是列出了部分知识点(Hash在iOS中的应用分析整理)摘自知乎的一句话:1.1、关联对...
295
8
分享
seaBright
赞了这篇文章
执笔续春秋
iOS @A Ridiculous Coder
·
5年前
关注
iOS面试了20几家总结出来的面试题(二)
27. SDWebImage是怎么做缓存的? 首先说,缓存采用了二级 缓存策略。 图片缓存的时候, 在内存有缓存, 在磁盘中也有缓存, 其中内存缓存是用NSCache做的 ...
90
8
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 - weak & autoreleasepool
__weak Person *person; __unsafe_unretained Person *person; nslog(111) autorelesePool {...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 -计时器
使用 CADisplayLink, NSTimer 的注意点 会对target产生强应用,如果target又对他们产生强引用,那么就会引发 循环引用 CADisplayLi...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 多线程
pthread c 语言 NSthread GDC 充分利用多核 NSOperation GCD 常用API 主队列:dispatch_get_main_queue() 专...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 - Runloop 保活线程
@interface @property (noatomoc) NSthred thred; @property (noaotonc) Bool stoped = NO; ...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 - Runloop
runloop 作用 保持程序不会马上退出 处理APP的各种事件 (比如触摸事件 定时器事件) 节省CPU资源 提高程序性能 NSrunloop = [NSrunloop ...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 -runtime -super
nslog(self class]); lldb sutdent nslog(self superClass); lldb person nslog(super class...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 - runtime - 方法交换
method run = objc_getInstenceMethod(@select(run); method text = objc_getInstenceMethod...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 - runtime super 面试题
nsstring *name = @"123"; id cls = [Person Class] void *obj = &cls [(__bridge id) obj p...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 - runtime_msgSend
// 方法查找流程 person test]; objc_msgsend(person, sel_registerName(test)); objc_msgsend(per...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 -rumtime-方法缓存
ro_t { method_t { SEL name // 函数名 const char *types //编码 返回值类型 参数类型 IMP imp 函数指针 } } I...
0
评论
分享
seaBright
iOS @bzl
·
3年前
关注
oc 基础 -符合位运算的enum
typeof enum { Option1 = 1<<0; Option2 = 1<<1; Option3 = 1<<2; Option4 = 1<<3; } Option...
0
评论
分享
下一页
个人成就
文章被点赞
10
文章被阅读
12,124
掘力值
360
关注了
12
关注者
0
收藏集
2
关注标签
6
加入于
2016-10-17