Posts by Eduardo Urso • 326 points
4 posts
-
5
votes1
answer1642
viewsA: Error clone with Git
I had the same problem and found the following solution. Error message: ssh -v [email protected] OpenSSH_5.8p1, OpenSSL 1.0.0d 8 Feb 2011 debug1: Connecting to github.com [207.97.227.239] port 22.…
-
5
votes1
answer668
viewsA: Swift with sqlite
There is a demo application on github, which can be a good one for you to understand how to connect to sqlite and how to use it together with Swift. See the example project in the link below:…
-
4
votes1
answer516
viewsA: How to pass data(string) from a class to Viewcontroller’s Textfield
You cannot set the text to Uitextfield (or any other component like Uilabel or Uitextview) in the method prepareForSegue, because all the components of the target view controller are not yet…
-
4
votes1
answer140
viewsA: SQLITE INSERT problem when app starts
If you’re really interested in learning how to use Sqlite to control your iOS App data, I recommend you follow the tutorial below, it’s a great guide:…