ios-chart 不支持渐变的底色 --- 后面支持了渐变
摘要:https://github.com/danielgindi/ios-charts/issues/186 后话,最近库更新了,可以支持渐变色
阅读全文
block
摘要: Automatic variables (local variables) Function arguments Static variables (static local variables) Static global variables Global variables...
阅读全文
ARC Rules
摘要:To write and compile source code for ARC, you have to take care of a few things. Just by following the rules in the list below, you can write source c...
阅读全文
runtime
摘要:消息的处理就是需要先确定实际执行的方法然后跳转过去并执行Objective-C对象的内存空间仅分配在“堆空间”(heap space)中,肯定是不会分配在“栈”(stack)上因此,我们可以看出,“栈”其实是无法实施“引用计数”机制的,Objective-C否定使用“栈”存储对象的设想。Object...
阅读全文