2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【解決】UICalendarViewのサイズ変更がうまくいかなかった

Posted at

課題

UICalendarViewをUIViewRepresentableを使ってSwiftUIで表示しようとした際に思い通りの大きさにならないことがあった.筆者は確認していないが,AutoLayoutでもうまく行かないことがあるらしい.

状況

SwiftUIのframeサイズ指定で画面の3分の1の幅を指定しているが反映されていない.

スクリーンショット 2022-10-10 3.32.53.png

解決

setContentCompressionResistancePriority.defaultLowに設定することで思い通りのサイズを指定できるようになった.

calendar.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)

スクリーンショット 2022-10-10 3.33.30.png

解説

setContentCompressionResistancePriorityはコンテンツの潰れにくさを設定することができる.やりすぎると字がつぶれてしまって表示できない部分も出てくるが少し窮屈でもいいから表示したいときなどに便利そう.

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?