Post

Replies

Boosts

Views

Activity

Sticker app
I wanted to make an iMessage sticker pack, but I cant load the stickers in the preview section. logs say "2022-05-03 21:19:13.419469+0900 lifeofacircle StickerPackExtension[15174:722339] Failed to inherit CoreMedia permissions from 15151: (null) objc[15174]: Class _PathPoint is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore (0x11e67b338) and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI (0x13d784fe8). One of the two will be used. Which one is undefined. objc[15174]: Class _PointQueue is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore (0x11e67b310) and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI (0x13d785010). One of the two will be used. Which one is undefined. 2022-05-03 21:19:13.540986+0900 lifeofacircle StickerPackExtension[15174:722265] [PPT] Error creating the CFMessagePort needed to communicate with PPT. 2022-05-03 21:24:12.287466+0900 lifeofacircle StickerPackExtension[15174:728184] Failed to inherit CoreMedia permissions from 15151: (null) 2022-05-03 21:24:12.307225+0900 lifeofacircle StickerPackExtension[15174:722265] [PPT] Error creating the CFMessagePort needed to communicate with PPT." I do not know what ppt means and I do not know whats the problem please help me
0
1
740
May ’22
Failed to produce diagnostic for expression; please submit a bug report
i did " // customslidebar.swift // chatbot // // Created by AndrewLee on 2022/05/04. // import SwiftUI enum Tab: String, CaseIterable {     case house     case message     case person     case gearshape } struct customslidebar: View {   @Binding var selectedTab: Tab   private var fillimage: String {     selectedTab.rawValue + ".fill"   }       var body: some View {     VStack {       HStack {         ForEach(Tab.allCases, id: .rawValue) { tab in           Spacer()           image(systemName: selectedTab == tab ? fillimage : tab.rawValue)           Spacer()                                 }       }       .frame(width: nil, height: 60)       .background(.thinMaterial)       .cornerRadius(10)       .padding()             }   } } struct customslidebar_Previews: PreviewProvider {   static var previews: some View {     customslidebar(selectedTab: .constant(.house))   } } this but it says Failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the project
1
0
939
May ’22