Posts

Post not yet marked as solved
8 Replies
0 Views
I am the developer of the app and there happens nothing in didFinishLaunching. Besides, if I deploy the .ipa directly to my device, all works fine (as well as in iOS14) And there was already kind of this problem in iOS14.2
Post marked as solved
2 Replies
0 Views
I noticed the same behavior and furthermore since iOS13 beta 5 my App crashes when I display two pickers in one list and try to select value from the second one. Any idea why? View to reproduce: struct ContentView: View {     @State private var selected1 = 0     @State private var selected2 = 0          @State private var showPicker1 = false     @State private var showPicker2 = false          var body: some View {         NavigationView {             List {                 HStack {                 Text("Picker 1")                 Spacer()                     Text("\(selected1)").foregroundColor(.secondary)                 }                 .onTapGesture {                     withAnimation {                     self.showPicker1.toggle()                     }                 }                                  if showPicker1 {                 Picker("", selection: $selected1) {                     ForEach(1..<5) { idx in                         Text("\(idx)").tag(idx)                     }                 }                 .pickerStyle(.wheel)                 .clipped()                 }                                                   HStack {                 Text("Picker 2")                 Spacer()                     Text("\(selected2)").foregroundColor(.secondary)                 }                 .onTapGesture {                     withAnimation {                     self.showPicker2.toggle()                     }                 }                                  if showPicker2 {                 Picker("", selection: $selected2) {                     ForEach(1..<15) { idx in                         Text("\(idx)").tag(idx)                     }                                      }                 .pickerStyle(.wheel)                 .clipped()                 }             }             .listStyle(.inset)             .navigationTitle("Picker")         }              } }
Post marked as solved
1 Replies
0 Views
noticed the same, before it seemed ok
Post not yet marked as solved
1 Replies
0 Views
I cannot submit with Xcode 10 GM built on High Sierra. I implemented new watch complications and it gives me error ITMS-90517 invalid complication family.Any idea?
Post marked as solved
28 Replies
0 Views
I also need to parse parameters in my intent, I hope this will be possible soon. I have an app for tracking working time and I need something like "add 5 hours and 30 minutes working time using Time Guard (name of my app"
Post not yet marked as solved
9 Replies
0 Views
I also get those "Bad apple-app-site-association server trust: -6754" errors although all SSL-stuff is setup correctly. I can download the file with NSURLSession without any problems:Optional(&lt;NSHTTPURLResponse: 0x60c00022a200&gt; { URL: http://server/.well-known/apple-app-site-association } { Status Code: 200, Headers { "Accept-Ranges" = ( bytes ); "Cache-Control" = ( "private,max-age=10" ); Connection = ( "keep-alive" ); "Content-Length" = ( 301 ); "Content-Type" = ( "application/json" ); Date = ( "Wed, 11 Apr 2018 13:08:15 GMT" ); Etag = ( "\"4ad5554785a1d31:0\"" ); "Last-Modified" = ( "Fri, 09 Feb 2018 09:06:32 GMT" ); "Proxy-Connection" = ( "keep-alive" ); Server = ( "Microsoft-IIS/7.5" ); Via = ( "1.1 proxy:3128 (Cisco-WSA/8.5.3-069)" ); "X-Powered-By" = ( "ASP.NET" ); } })Could you solve your error?
Post not yet marked as solved
6 Replies
0 Views
from my IIS server log I see that apple-app-site-association gets downloaded successfully with return code 200 and without any redirects, hoewever in Device Console I get this:Feb 8 07:15:45 Sebastians-iPhone-6s-plus swcd(CoreUtils)[218] &lt;Notice&gt;: ### Bad apple-app-site-association server trust: -6754/0xFFFFE59E kAuthenticationErr, 1 (kSecTrustResultProceed), { "TrustResultDetails" : [ {}, {}, {} ], "TrustResultValue" : 1, "TrustEvaluationDate" : 2018-02-08 06:15:45.231066, "TrustExpirationDate" : 2018-02-12 10:18:43.000000, "TrustRevocationChecked" : true,}
Post not yet marked as solved
6 Replies
0 Views
in my company we use Mobile Iron as MDM solution and I’m facing the exact same problem. Any hints what to do?