• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: More elegance than a long if/else
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: More elegance than a long if/else


  • Subject: Re: More elegance than a long if/else
  • From: Jeff Kelley <email@hidden>
  • Date: Fri, 10 Mar 2017 10:47:39 -0500

Something like this should work:

batteryIcon.image = UIImage(named: "\((_myBatteryLevel % 10) + 1)")


Jeff Kelley

email@hidden | @SlaunchaMan <https://twitter.com/SlaunchaMan> |
jeffkelley.org

On Fri, Mar 10, 2017 at 10:41 AM, Eric E. Dolecki <email@hidden>
wrote:

> I have this super simple code, but I'd like to whittle it down to something
> a lot smaller - basically looking for multiples of 10 (100-0) for a value.
> I need coffee, what's a great way to do this in Swift 3?
>
> if _myBatteryLevel >= 90 {
>             batteryIcon.image = UIImage(named: "10")
>         } else if _myBatteryLevel >= 80 {
>             batteryIcon.image = UIImage(named: "9")
>         } else if _myBatteryLevel >= 70 {
>             batteryIcon.image = UIImage(named: "8")
>         } else if _myBatteryLevel >= 60 {
>             batteryIcon.image = UIImage(named: "7")
>         } else if _myBatteryLevel >= 50 {
>             batteryIcon.image = UIImage(named: "6")
>         } else if _myBatteryLevel >= 40 {
>             batteryIcon.image = UIImage(named: "5")
>         } else if _myBatteryLevel >= 30 {
>             batteryIcon.image = UIImage(named: "4")
>         } else if _myBatteryLevel >= 20 {
>             batteryIcon.image = UIImage(named: "3")
>         } else if _myBatteryLevel >= 10 {
>             batteryIcon.image = UIImage(named: "2")
>         } else if _myBatteryLevel >= 0 {
>             batteryIcon.image = UIImage(named: "1")
>         }
>
> Thanks for thinking about my lame code.
> _______________________________________________
>
> Cocoa-dev mailing list (email@hidden)
>
> 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:
>
> This email sent to email@hidden
>
_______________________________________________

Cocoa-dev mailing list (email@hidden)

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:

This email sent to email@hidden


  • Follow-Ups:
    • Re: More elegance than a long if/else
      • From: "Eric E. Dolecki" <email@hidden>
References: 
 >More elegance than a long if/else (From: "Eric E. Dolecki" <email@hidden>)

  • Prev by Date: More elegance than a long if/else
  • Next by Date: Re: More elegance than a long if/else
  • Previous by thread: More elegance than a long if/else
  • Next by thread: Re: More elegance than a long if/else
  • Index(es):
    • Date
    • Thread