I did look at that, but , certainly in Playground, it produces this error.

enum with raw type cannot have cases with arguments case Custom(String)

On Jul 17, 2015, at 1:33 PM, Stephen J. Butler <stephen.but...@gmail.com> wrote:
> 
> How about using a Custom option with an associated String value?
> 
> enum Foo:String {
> 
>     case Bar = “Bar"
>     case Etc = “Etc"
>     case Etc_Etc = “Etc Etc"
>     case Custom(String)
>  }
> 
> 
> On Fri, Jul 17, 2015 at 2:53 PM, Michael de Haan  <m...@comcast.net 
> <mailto:m...@comcast.net>> wrote:
> I wonder if I can get some input as I seemed to have hit a wall in Swift, 2.0
> 
> My App uses structs and enums to hold the bulk of the data needed for it’s  
> default values (probably over 95%). So, for example,
> 
> enum Foo:String {
> 
>     case Bar = “Bar"
>     case Etc = “Etc"
>     case Etc_Etc = “Etc Etc"
>  }
> 
> 
> As a very small percentage of the app, I want to allow the user to add a 
> custom “raw-Value" of Type Foo. In essence, it would be as if the user had 
> added another case to the enum.
> 
> 
> 
>  let x = Foo(rawValue: “newRawValue”) not unsurprisingly,  returns “nil".
> 
> I know that I could use Core Data to store the data, but it seems that for so 
> trivial amount of user data,I should be able to do it without resorting to 
> Core Data.
> 
> Or, I may be approaching it the wrong way entirely.
> 
> Your thoughts would be greatly appreciated.
> 
> 
> 
> 
> 
> _______________________________________________
> 
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com 
> <mailto:Cocoa-dev@lists.apple.com>)
> 
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com 
> <http://lists.apple.com/>
> 
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/stephen.butler%40gmail.com 
> <https://lists.apple.com/mailman/options/cocoa-dev/stephen.butler%40gmail.com>
> 
> This email sent to stephen.but...@gmail.com <mailto:stephen.but...@gmail.com>
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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 arch...@mail-archive.com

Reply via email to