Text("Hello")
.charcoalTypography20Bold()
Button("OK") {}
.charcoalPrimaryButton(size: .medium)
Storyboard とコードから利用可能です。
let label = CharcoalTypography20()
label.isBold = true
label.text = "Hello"
let button = CharcoalPrimaryMButton()
button.setTitle("OK", for: .normal)
charcoal-ios はデフォルトで Dynamic Type をサポートしています。この機能を無効にしたい場合は、以下の手順をご参照ください。
.environment(.sizeCategory, .large)
を使用して Dynamic Type レベルを固定します。
Button("Default Button M") {}
.charcoalDefaultButton(size: .medium)
.environment(\.sizeCategory, .large)
デフォルトでは、CharcoalUIKitはUITraitCollectionのpreferredContentSizeCategory属性に従いますので、UITraitCollectionを変更することでSizeCategoryを指定できます。
let trait = UITraitCollection(preferredContentSizeCategory: .large)
setOverrideTraitCollection(trait, forChild: viewController)
その他にも、CharcoalConfig.configUIKit.fixedSizeCategory
を使用して Dynamic Type レベルを固定します。
CharcoalConfig.configUIKit.fixedSizeCategory = .large
Swift Package Manager を使ってライブラリをインストールすることができます。
dependencies: [
.package(url: "https://github.com/pixiv/charcoal-ios", .upToNextMajor(from: "1.0.0"))
]
- iOS 14+
- macOS 11+
Xcode configuration DebugMaxDeploymentTarget
は、自動化テストの際に IPHONEOS_DEPLOYMENT_TARGET
を指定するためだけに使用されます。
Run swiftgen
command in the charcoal-ios
project folder.
swift run --package-path BuildTools swiftgen
swift run --package-path BuildTools swiftlint
swift run -c release --package-path BuildTools swiftformat .