I am using CFSTR function for creating CFString from constant c string and i am calling this function very frequently in my Daemon.
From documentation:
A value returned by CFSTR has the following semantics:
- Values returned from CFSTR are not released by CFStringâthey are guaranteed to be valid until the program terminates.
- You can retain and release values returned from CFSTR in a balanced fashion, like any other CFString, but you are not required to do so.
Should i use retain and release ?
