Just upgraded to Xcode Beta 4 and noticed the following compiler error with my code below:
var path = CGPathCreateMutable() ... CGPathRelease(path)
"CGPathRelease" is not available: Core Foundation objects are automatically managed memory.
So just I just delete my release calls, and should everything be fine? Or is there something else I am missing? And are there any special cases that I should know about using ARC?
memory-management ios automatic-ref-counting swift core-foundation
Epic byte
source share