sprang / Brushes

Painting app for the iPhone and iPad.
Mozilla Public License 2.0
1.76k stars 449 forks source link

Not support ARC #23

Open magicfuture opened 10 years ago

magicfuture commented 10 years ago

Seem there have many code need to modify for iOS 7 ARC. Isn't it? (Sorry if i were wrong)

JamesBucanek commented 10 years ago

Using ARC is optional. Older applications that don’t use ARC are not required to be modified to run on iOS 7.

An application can use ARC (where the compiler decides where the -retain and -release messages should be sent) or it can use traditional reference counting (where the programmer decides where the -retain and -release messages should be sent). Both use the same underlaying memory management services, and both are supported on iOS 7.