一个好玩的demo

做这个demo的起因是看到了一个神经病一样的音量调节UI

这个微博里的第二张gif

直接附代码吧

感觉也没有什么值得写的地方

不过这个代码里还没实现音量按钮变色的功能

(更多...)

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

print

(‘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宽度随文字变化

但是标签右侧与图标左侧有最小间距

好了我们来捋一捋这个问题

(更多...)