控制饮食饿的头昏眼花,每天的日子过得很快,保持“一”原则,别让数量压垮现实,学习的本质是置身“事”内
-
evolve (verb)
if an animal evolves,it changes gradually over a long period of time
fishes evolves from prehistoric sea creatures.
-
interfere (verb)
to deliberately get involved in a situation where you are not wanted
My daughter-in-law said that I was interfering,but I was only trying to help.
-
UIWebView 保持cookie方法
在完成加载后用全局单例cookie管理器读取cookie,用字典作为媒介存储到本地,在下一次APP启动后网络加载前,把本地存储的字典拿出来,转换成为cookie,放到管理器中,网络请求会去读取管理器中的缓存,但是为什么管理器在程序退出后就没有数据了呢?这个问题等待追寻
-
UIWebView 适配iphoneX的方法
在11.0系统版本及其以上的时候,设置内部的滚动视图内容调整设置为从不设置
if (@available(iOS 11.0, *)) {
webView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}