Posts by Júnior César Abreu • 33 points
3 posts
-
0
votes1
answer56
viewsQ: Pause running on an Android Service
I am developing an Android app where there is a IntentService to read a file. Each line of the file represents a record that must have a specific format according to the requirements of the…
-
3
votes3
answers299
viewsA: How to make Visual Studio interpret an hour that is larger than 23hrs and smaller than 6hrs at the same time?
Try if ((hora_now >= var_horaC1) || (hora_now <= var_horaC2)) {} Because if hora_now is 5 in the morning, it will be less than var_horaC2 (6), but it will not be greater than var_horaC1 (23).…
-
0
votes1
answer1456
viewsQ: How to pass data from one Viewcontroller to another Viewcontroller
Researching on this I found some solutions, the first is to go through the prepareForSegue(), the second is to use a shared variable (global), I also saw something about using protocol but could not…