Posts by Miguel Grenho • 11 points
2 posts
-
1
votes2
answers117
viewsA: Whether or not to use Mainstoryboard Swift
IMO This issue is more than a matter of preference. The use of Storyboard actually makes certain options and settings simpler and more visual, but will be better used in smaller and simpler projects…
-
0
votes1
answer115
viewsA: Swift - Send json body through the still
Alamofire allows sending a dictionary as parameters of a POST: Alamofire.request(.POST, "http://myserver.com", parameters: User.toDictionary(), encoding: .JSON) .responseJSON { request, response,…