Swift's pitfall: How to implement multiple selection of enum

Swift's pitfall: How to implement multiple selection of enum

question

In OC, enum can have multiple selections. For example:

  1. NSString* string = @ "a paragraph of text" ;
  2. CGRect boundingRect = [string boundingRectWithSize:CGSizeMake(label.frame.width, CGFloat.max) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:attributes context:nil];

By combining two enum values ​​with |, you can achieve the effect of multiple selection.

Now the question is: how to achieve the same effect in Swift?

Option Type in Swift

Swift's enum does not support multiple selections, so the option type that supports multiple selections should be implemented using struct: RawOptionSet. To implement the options type yourself, you can refer to this answer.

The official SDK is ported using this method.

Correct way to write

The correct way to write the code in the above example using Swift is as follows:

  1. let options : NSStringDrawingOptions = .UsesLineFragmentOrigin | .UsesFontLeading
  2. let boundingRect = string.bridgeToObjectiveC().boundingRectWithSize(CGSizeMake(label.frame.width, CGFloat.max), options: options, attributes: attributes, context: nil)

In OS X 10.10, this works.

iOS SDK bugs

But in the current version of iOS 8 SDK, this way of writing cannot be compiled. This is because in the iOS 8 SDK, NSStringDrawingOptions has been transplanted to enum: Int instead of struct: RawOptionSet.

How to solve this problem? We can only use OC to workaround.

Solution

Because the options used are the same, I simply wrote this class:

OCUtils.h

  1. @interface OCUtils : NSObject
  2. + (NSStringDrawingOptions)stringDrawingOptions;
  3. @end

OCUtils.m

  1. #import "OCUtils.h"  
  2. @implementation OCUtils
  3. + (NSStringDrawingOptions)stringDrawingOptions{
  4. return NSStringDrawingTruncatesLastVisibleLine |
  5. NSStringDrawingUsesLineFragmentOrigin |
  6. NSStringDrawingUsesFontLeading;
  7. }
  8. @end

Add the following to Bridging-Header.h:

  1. #import "OCUtils.h"  

Swift files used

  1. let boundingRect = string.bridgeToObjectiveC().boundingRectWithSize(CGSizeMake(label.frame.width, CGFloat.max), options: OCUtils.stringDrawingOptions(), attributes: attributes, context: nil)

If there are further requirements, it can be changed to be more general. The overall principle can only be like this.

Reference for this article : How to pass multiple enum values ​​as a function parameter

Original article: Swift's pitfall: How to implement multiple selection of enum

<<:  CES2015: ZTE releases 6-inch ultra-large screen mobile phone Grand X Max+

>>:  Break the 24-hour unspoken rule and create truly innovative apps

Recommend

Will driverless cars replace taxis?

Ride-hailing app Uber announced yesterday that it...

A guide to traffic channels for Douyin live streaming rooms!

When it comes to Tik Tok live streaming , the mos...

There is a kind of "breathing pain" called - dry nasal cavity!

Missing you is a pain that breathes, it lives in ...

Are frost and frost the same thing? Here are 7 tips to deal with frost!

Today is Frost Descent, the eighteenth of the twe...

Dang Xing Xue Tang: Amateurs can also become popular in short videos

Dang Xing Xue Tang: Amateurs can also become popu...

How can iOS be reliable in recruitment?

I have interviewed many people in the past year. ...

Code practice of background positioning upload

[[142068]] Preface As mentioned in the previous a...

20 thoughts on marketing, copywriting, and new media!

1. There is a very famous marginal effect in econ...