iOS Question Apple store crashlog problem

dnaci

Member
Licensed User
Longtime User
I sent my application to the apple store. Not accepted. It was reported that the application was locked at the boot. Log files have been sent.

I've tried implementing iPhone with iOS 10.3.2. There is no problem. I tested with flightmode and no problem.

I add the log files. I do not know about log files. Glad to help those who have information. I can also send archive files. Thanks.
 

Attachments

  • attachment-3836950685083913652crashlog-4BCB69CA-A4FB-4607-8F69-533C5E154133.txt
    39.9 KB · Views: 182
  • attachment-4919533354855370499crashlog-0E503C98-94E9-492C-A3FC-E87C6DC32287.txt
    39.9 KB · Views: 194
  • attachment-7814186378458105879crashlog-5F16CC97-94BC-4095-A223-0AF70A2A0232.txt
    39.9 KB · Views: 235
  • attachment-8125854424345926189crashlog-B7A82220-694A-4E8C-A428-796090AC5EE4.txt
    40 KB · Views: 195

dnaci

Member
Licensed User
Longtime User
Thanks JanPRO. I made the arrangements you suggested. The log file problem has been resolved.

information:

Code causing crashlog error:
Sub Button1_Click
Dim smsc As MessageComposer
smsc.Initialize("smsc")
smsc.SetRecipients(Array As String(Label27.text)) 'must be strings!
smsc.Body = "R1A"
smsc.Show(Page1)
TextField2.text="R1A"
End Sub

Code that runs smoothly:
Sub Button1_Click
If CanSendText ThenDim smsc AsMessageComposer
smsc.Initialize("smsc")
smsc.SetRecipients(ArrayAsString(Label27.text)) 'must be strings! smsc.Body = "R1A"
smsc.Show(Page1)
TextField2.text="R1A"
EndIf
End Sub
Sub CanSendText As BooleanDim NaObj AsNativeObjectReturn NaObj.Initialize("MFMessageComposeViewController").RunMethod("canSendText",Null).AsBoolean
End Sub
 
Upvote 0
Top