Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CGRect は 4 つの float で構成されていることを知っています。特定の CGRect オブジェクトからこれらのフロートを取得するにはどうすればよいですか?
CGRect のクラス リファレンスを検索しましたが、何も見つかりませんでした。
このように: (以前に定義されたCGRectが呼び出されたと仮定myRect)
CGRect
myRect
CGFloat x = myRect.origin.x; CGFloat y = myRect.origin.y; CGFloat height = myRect.size.height; CGFloat width = myRect.size.width;
何も見つからなかった理由は、単に CGRect がクラスではないためです。
ドキュメントはここにあります。
お役に立てば幸いです。:)