> On Oct 21, 2014, at 4:25 PM, Rick Mann <[email protected]> wrote:
>
> But the names of the elements all have to start with the type name
This should not be the case. Please provide an example of the ObjC and Swift
code you're using.
Here's mine:
// ObjC header: no type name prefix on enumerators
typedef NS_ENUM(NSInteger, Foo) {
Aalpha, Bbeta, Oomega
};
// Swift code: compiles successfully
var f = Foo.Aalpha
if f == Foo.Bbeta { println("same") }
--
Greg Parker [email protected] Runtime Wrangler
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]