From 5c6894cfc2f73381c38a591a3f465444e0a385af Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Wed, 26 Sep 2012 11:05:09 -0700 Subject: [PATCH] Don't use @synthesize https://twitter.com/bencochran/status/251018593158967298 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 214c84b..f0196ea 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ * Use dot-syntax for side effect-free state accessing. * Always declare memory-management semantics even on `readonly` properties. * Declare properties `readonly` if they are only set once in `-init`. + * Don't use `@synthesize` unless the compiler requires it. + * Instance variables should be prefixed with an underscore (just like when implicitly synthesized). ## Control Structures