[Solved] How to use correct iOS link schema for launching external apps form Meteor app? [closed]

My guess is that your links are what iPhone can recognise and handle in a built-in or 3rd party app. Check following documentation for built-in iOS apps: iOS Phone Links Mail Links Apple MapLinks If you prefer using Google Maps check Google Maps URL Scheme for iOS or for Waze: Launching Waze iOS client with … Read more

[Solved] I need advice on creating an app for uploading training videos [closed]

Backend Php will be better to use To post a video you need simple UI having browse or capture video features func createRequest (videoname : String!) -> NSURLRequest { print(“Path of video upload is:\(videoname)”) let param = [ “key” : “\(self.key)”, “secret” : “\( self.secret)”, “package_name” : p_name, “video” :”\(videoname)” ] let boundary = generateBoundaryString() … Read more