Posts by Vinicius Campos Garcia • 21 points
3 posts
-
1
votes2
answers56
viewsA: How to call a viewcontrolller Runtime
With what you sent seems to be all right, the problem must be occurring by where you’re making this call, so. If you’re calling this method inside: override func viewDidLoad() { super.viewDidLoad()…
-
0
votes2
answers143
viewsA: Why is the result of this code going to be 30?
Simple as that. i = 0 if rule met velocidade += i(0) * 2 OU (velocidade = velocidade(0) + 0) // Velocidade aqui é 0 again i = 1 if rule met velocidade += i(1) * 2 OU (velocidade = velocidade(0) + 2)…
swiftanswered Vinicius Campos Garcia 21 -
0
votes3
answers2591
viewsA: How to create a mobile desktop shortcut for a Web App?
You should have the apps posted in the App Store and Googleplay stores! As you already have the application ready on the Web, one option would be to develop the applications for IOS and Android with…