Posts by Felipe Ferri • 146 points
4 posts
-
0
votes2
answers80
viewsA: how to add white space between strings
Another way: myLabel.text = "\(Enter.text!) \(Enter1.text!)"
-
2
votes1
answer162
viewsA: How to redirect to a Viewcontroller
When you remove the Viewcontroller method and put it into a separate class you lose the "self", so you can’t just call self.performSegueWithIdentifier(). What you can do is change the signature of…
-
1
votes2
answers66
viewsA: How do I Alert message Uialertcontroller
The original error was that you had called "presentedViewController", which is a property, rather than "presentViewController()" which is a method. It was two little letters, it’s easy to confuse…
-
0
votes2
answers191
viewsA: How to migrate data between views using Tab Bar Controller (Swift)
Okay, there are some ways to do this. I think the best one is that you create a class that will be shared across all of your app views. This class can store data structures and methods that are…