Re: [swift-users] CoreData weirdness in development build

2016-06-08 Thread Charles Lane via swift-users
Thanks Brent, sounds reasonable. Although I don’t think this was a problem in pre-Swift 3.0 builds. I think I’ll just avoid using attributes beginning with ‘is’ in the managed object model! ___ swift-users mailing list swift-users@swift.org https://lis

Re: [swift-users] CoreData weirdness in development build

2016-06-08 Thread Brent Royal-Gordon via swift-users
> Here’s something ‘cute’. Make a simple ios project using coredata. Name an > entity whatever you like, but give it any attribute that starts with ‘is’. > Such as isVisited or isDone or whatever you like of type Boolean. Try > setting the entity to true or false, no matter, and save the entity

[swift-users] CoreData weirdness in development build

2016-06-07 Thread Charles Lane via swift-users
OK, i tested it using a string attribute and it still fails. Coredata will crash if an attribute begins with ‘is’. > Here’s something ‘cute’. Make a simple ios project using coredata. Name an > entity whatever you like, but give it any attribute that starts with ‘is’. > Such as isVisited or isD

[swift-users] CoreData weirdness in development build

2016-06-07 Thread Charles Lane via swift-users
Here’s something ‘cute’. Make a simple ios project using coredata. Name an entity whatever you like, but give it any attribute that starts with ‘is’. Such as isVisited or isDone or whatever you like of type Boolean. Try setting the entity to true or false, no matter, and save the entity. The pr