[Solved] readwrite or assign, what do I use as a property modifier for a CGFloat [closed]


readwrite and assign are not mutually exclusive, they serve different purposes. You can likely just declare it without specifying either and let it default to both readwrite and assign, which is almost certainly what you want.

4

solved readwrite or assign, what do I use as a property modifier for a CGFloat [closed]