Posts by Gutoglup • 51 points
4 posts
-
0
votes1
answer49
viewsA: Swift error in passing parameters
In case, you must pass the parameters in the following way: func imageUploadRequest(param:Array<String>,myImageView:UIImage) Taking for position that in Swift 2.0 is used the specification of…
-
1
votes1
answer300
viewsA: Pass parameters between IOS views
If you are using Storyboard simply by mapping the action you can know which button the user pressed at the time. If the buttons are being programmatically allocated, there is the possibility to…
-
0
votes2
answers219
viewsA: Sending data from one tableView to another
There is also the possibility to store the data in a Singleton class, which is a design standard, if data needs to be available for several classes to use. As an example, classes that store user…
-
1
votes1
answer50
viewsA: Factory of objects related to local persistence on SWIFT
It is recommended to use Coredata to store the data on the device locally. Similarly, the FMDB can be used, or depending on the need, if there are few data to be stored, it can be using…