Posts

Post not yet marked as solved
4 Replies
Meanwhile here's all you need to trick SwiftUI into removing separators from List (at least as of Xcode 12 beta 1 and iOS 14.0 beta 1) 👌 extension List {     @ViewBuilder func noSeparators() -> some View {         #if swift(>=5.3) // Xcode 12         if #available(iOS 14.0, *) { // iOS 14             self             .accentColor(Color.secondary)             .listStyle(SidebarListStyle())             .onAppear {                 UITableView.appearance().backgroundColor = UIColor.systemBackground             }         } else { // iOS 13             self .listStyle(PlainListStyle())             .onAppear {                 UITableView.appearance().separatorStyle = .none             }         }         #else // Xcode 11.5         self .listStyle(PlainListStyle())         .onAppear {             UITableView.appearance().separatorStyle = .none         }         #endif     } }
Post not yet marked as solved
4 Replies
Found a radar about this: http://www.openradar.me/FB7802824
Post not yet marked as solved
12 Replies
same here, Xcode 11.4.1 and iOS 13.4
Post not yet marked as solved
10 Replies
I've noticed that ES_EVENT_TYPE_AUTH_OPEN requires responding with es_respond_flags_result(4) instead of es_respond_auth_result(4). Later one always returns ES_RESPOND_RESULT_ERR_EVENT_TYPE for me and freezes my mac because the auth events are not responded properly. May that be your case also?
Post not yet marked as solved
2 Replies
ES_EVENT_TYPE_AUTH_OPEN requires responding with es_respond_flags_result(), not es_respond_auth_result() shown in the Message docs example. Are you doing that?
Post marked as solved
6 Replies
Apparently, ES_EVENT_TYPE_AUTH_OPEN requires responding with es_respond_flags_result(4) instead of es_respond_auth_result(4) at line 16 in your code
Post not yet marked as solved
27 Replies
It's 2020 now, iCloud Shared Folders appeared on last weeks macOS 10.15.4 betas, but Xcode 11.4 beta still do not have FileProvider for macOS back. On the other hand, FileProvider documentation says it should be available on macOS 10.15 and Catalyst.Any estimations? Should we expect it any time soon or it is delayed for longer than spring?