Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image attachment's bounds takes a String instead of CGRect #129

Open
aheze opened this issue Jan 17, 2021 · 1 comment
Open

Image attachment's bounds takes a String instead of CGRect #129

aheze opened this issue Jan 17, 2021 · 1 comment

Comments

@aheze
Copy link

aheze commented Jan 17, 2021

The example in the README shows how to make an image, like this:

// You can specify the bounds of the image, both for size and the location respecting the base line of the text.
let localTextAndImage = AttributedString(image: UIImage(named: "rocket")!, bounds: CGRect(x: 0, y: -20, width: 25, height: 25))

But, when I try, it seems that bounds accepts a String?.

Screen Shot 2021-01-17 at 12 15 03 PM

Screen Shot 2021-01-17 at 12 17 30 PM

Shouldn't it take a CGRect?

@CherryPick62
Copy link

The example in the README shows how to make an image, like this:

// You can specify the bounds of the image, both for size and the location respecting the base line of the text.
let localTextAndImage = AttributedString(image: UIImage(named: "rocket")!, bounds: CGRect(x: 0, y: -20, width: 25, height: 25))

But, when I try, it seems that bounds accepts a String?.

Screen Shot 2021-01-17 at 12 15 03 PM

Screen Shot 2021-01-17 at 12 17 30 PM

Shouldn't it take a CGRect?

Yes! you can use this function "class func cgRect(for string: String) -> CGRect" and "class func string(for: CGRect) -> String"
A string whose contents are of the form “{{x,y},{w, h}}”, where x is the x coordinate, y is the y coordinate, w is the width, and h is the height. These components can represent integer or float values. An example of a valid string is @”{{3,2},{4,5}}”. The string is not localized, so items are always separated with a comma.
https://developer.apple.com/documentation/foundation/nscoder/1624508-cgrect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants