iOS Question Open with Xcode B4iProject.xcodeproj

D

Deleted member 103

Guest
Hi,

it is possible to open with XCode the project "B4iProject.xcodeproj"?
I ask because then you could use a Iphon simulator for testing.
 

tucano2000

Active Member
Licensed User
Longtime User
Hi,

it is possible to open with XCode the project "B4iProject.xcodeproj"?
I ask because then you could use a Iphon simulator for testing.

I vote +1 for this. I have an app rejected by Apple because it 's crash on iOS 8.1.2 and 8.1.3 only.
My real device has iOS 7.1 and I do not want to make it update as necessary to test other applications on 7.1.
I think the iphone simulator opening directly by IDE quickly solve my problem. I do not know if it is possible to be implemented in the future.
.
 
Last edited:
Upvote 0

tucano2000

Active Member
Licensed User
Longtime User
What is the error message?

As I could not test the error I received the log of Apple. If you can help me figure out what happened ...

Apple's Review:

Crash Log : temp..pzrjqiml.txt

2.1 Details

During review, your app crashed on iPad running iOS 8.1.2 and iPhone running iOS 8.1.2 when we:

1) Launch app
2) Accept Terms
3) App crashes

This occurred when your app was used:
- Offline
- On Wi-Fi
- On cellular network

We have attached detailed crash logs to help troubleshoot this issue.

Next Steps

Please revise your app and test it on a device to ensure that it runs as expected.
 
Upvote 0

tucano2000

Active Member
Licensed User
Longtime User
Ok Erel this is the sub...

B4X:
'...
'Show Module
    TimerScrollAviso.Initialize("TimerScrollAviso",100)
    TimerScrollAviso.Enabled=True
'....


B4X:
'Botao ACEITO do TERMO
Private Sub BtnVoltar_Click
    TimerScrollAviso.Enabled=False
    If File.Exists(File.DirDocuments,"termo.dat") Then
        Main.NavControl.ShowPage(Config.PageConfig)
    Else
        File.WriteString(File.DirDocuments, "termo.dat", "EU USUÁRIO DESTE APLICATIVO CONFIRMO QUE LI O TERMO E ACEITEI-O")
        DownloadRuas.ShowModule
    End If
End Sub

The timer is initialized before when the module is loaded. It move scrollview panel that show a message to user. BtnVoltar_Click is a button event that exit for another module. This code works on iOS 7.1 (my Iphone 4S) but not on iOS 8.1.2/8.1.3 by Apple. Why ?
 
Upvote 0

tucano2000

Active Member
Licensed User
Longtime User
ok Erel, Being a particular project I will send direct to you. What's your e-mail address?
 
Last edited:
Upvote 0

moster67

Expert
Licensed User
Longtime User
Just for the completeness of the thread, was this problem resolved and if yes, what was the reason it did not work on iOS 8.1.2/8.1.3?

Thanks.
 
Upvote 0
Top