一个好玩的demo
(更多...)NSURLSessionConfiguration与NSURLRequest中相同属性的优先级问题
根据文档中的说法
Note
In some cases, the policies defined in this configuration may be overridden by policies specified by an NSURLRequest object provided for a task. Any policy specified on the request object is respected unless the session’s policy is more restrictive. For example, if the session configuration specifies that cellular networking should not be allowed, the NSURLRequest object cannot request cellular networking.
一些情况下(妈的一些情况到底是哪几种情况你倒是说清楚啊),NSURLRequest的属性优先级高于NSURLSessionConfiguration
LLDB中的expression命令
先看一下print跟po
(‘expression –’) Evaluate an expression on the current thread. Displays any returned value with LLDB’s default formatting. Expects ‘raw’ input (see ‘help raw-input’.)
Syntax: print
Command Options Usage:
搭建GitHub Pages时遇到的坑
其实遇到的问题真的不少
不过基本都能靠看文档解决
这里只讲一个最蛋疼的问题:
markdown中插入代码有两种方式
- 一种是自己用```将代码包起来
一道面试题
一个cell中左边有一个label一个标签(紧挨着label右边),右边有一个图标
label文字不固定
布局的时候要求label宽度随文字变化
但是标签右侧与图标左侧有最小间距
好了我们来捋一捋这个问题