skip to Main Content

Ios swift – How to configure button via UIButton.Configuration with custom SFSymbol?

I create my button: private let sortButton: UIButton = { let buttonConfig = UIButton.Configuration.plain() let button = UIButton(configuration: buttonConfig) button.tintColor = R.color.controlSecondaryTypo() button.showsMenuAsPrimaryAction = true button.changesSelectionAsPrimaryAction = true return button }() Next I add the menu: private func setupButton() {…

VIEW QUESTION

Ios swift – iOS GameCenter crash in private API `GKNotificationBannerViewController::hideBannerQuickly`

I found this crash log in Firebase: Crashed: com.apple.main-thread 0 libdispatch.dylib 0x4b20 dispatch_semaphore_signal + 8 1 GameCenterUI 0x9ebd8 __56-[GKNotificationBannerViewController hideBannerQuickly:]_block_invoke_2 + 40 2 libdispatch.dylib 0x3f88 _dispatch_client_callout + 20 3 libdispatch.dylib 0x7418 _dispatch_continuation_pop + 504 4 libdispatch.dylib 0x1aa58 _dispatch_source_invoke + 1588…

VIEW QUESTION
Back To Top
Search