Docusign swift intergration [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am building a mobile app that requires some waivers for to be signed. Now I decided to go through Docusign in order to get electronic signatures but the do not seem to have any SDKs or tutorials for integration using swift language. Is there any way to integrate DocuSign with my app being completely composed of swift? Thanks.

When writing in Swift you can use obj-C code. Use a bridging header to include obj-c code to your swift project.
I don't know anything about Docusign, but if they have a obj-c SDK, you can use it in your project.

Related

AFNetworking for iOS Next Update for Objective-C [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
Currently i am doing IOS App Development and my projects works under AFNetworking Lib V3.2.1 also i am slowly migrating my app into the Swift with AutoLayout.
My clarification whether will get the AFNetworking Next version for Objective-C?. Because this lib last they was updated on May 2018 and its getting older now a days.
Better can I switch over my project into Swift with alamofire network lib.?
Suggestion require to proceed further.
For Objective-C there will be no further updates. Apple now recommends to use swift in every project so why go for objective-c now as its old. Alamofire is very good wrapper written for networking.
I would suggest you to start migrating your project to Swift by using Bridging-Header which serves purpose of using Swift & Objective-C in same project.

Swift - Run Code Stored Online [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I know this is probably a long shot but I wanted to know if there is any relatively easy way to run swift code which is stored on a server or hosted somewhere other than the application bundle. I would like to be able to change single lines of code without having to publish an update to the app.
If anyone could help or has a work around then that would be great.
Thanks
No it's both not possible (there is no compiler on an iOS device) and not allowed (downloading code is expressly forbidden by Apple's app store guidelines.)
So you both cannot and may not do this.

Integrating map in ios 8.0 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have integrated google map API in my android app. now i am programming same in iOS. I am not understanding how to integrate google map API in to my iOS 8.0?
You can user Default MapKit from iOS, with the nice tutorial HERE
You can use different way provided by Google Map SDK, with standard example HERE.
Hope this help you to do better.
HTH, Enjoy Coding !!
Use the MapKit framework.
https://developer.apple.com/library/ios/documentation/MapKit/Reference/MapKit_Framework_Reference/
It's pretty easy to use and you can find lot of tutorials on Google.
https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/LocationAwarenessPG/MapKit/MapKit.html

Will the facebook old version work for new features? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
We are working on iOS App. We are providing a feature to sign in with Facebook and it is working fine.
The Facebook version integrated with my app already seems old (we are using code not really sdk as they are providing now) and we are trying to implement the posting related functionality.
My question is: Can we continue with the Same version? as new sdk is released now If I use the same version Is there any chance to miss any new feature.
Note: It is already working code, that why wanted to double check before integrate the new one.
This question is kinda too broad/vague - but Facebook very strongly recommends you use the latest iOS SDK rather than code against the API directly.
The SDK manages a proper, supported authentication flow, as well as things like the Native Share and Message dialogs.

Are storyboards widely used on iOS apps? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am currently developing a iOS framework for other developers to use. I intend to use "ECSlidingViewController" framework and add it a webView to that Slide-Up. I already have it working on two projects but they all use storyboards in it.
My search for sample projects to test my framework raised a big question. 9 out of 10 of this samples didn't use storyboard.
So my question is: Should I start developing my framework for non-storyboard apps or is this situation only happening in sample projects.
What do you mean by sample projects.
All applications prior to iOS 5.0 are non-storyboard type.
If you intend to support versions prior to 5.0 only, you have to leave out the option to support storyboard.
If you are supporting older as well as 5.0 + versions you have to build it for storyboard as well as non storyboard applications.

Resources