The setter for public read/write access on an ACL isn't to Swift-spec. The objective-C property is `@property (nonatomic, assign, getter=getPublicReadAccess) BOOL publicReadAccess;` docs/examples say you should be able to do: `acl.publicReadAccess = true` but Swift only sees `getPublicReadAccess` as a variable. 