Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How does one use the CGRectIntegral function? I understand it's purpose.

The documentation isn't clear on it's exact use.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
306 views
Welcome To Ask or Share your Answers For Others

1 Answer

CGRectIntegral to convert any decimal values to their integer equivalents
see image may be you can understand enter image description here

How do I fix it?

frame = CGRectIntegral(frame);

-OR-

myTextView.frame = CGRectIntegral(myTextView.frame);

? see this for more information of CGRectIntegral


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...