Is there any common Swift coding conventions? [closed] - swift

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
At my work, I need to do some iOS coding using Swift version 4, which, needless to say, I have never done. As I would like to write from scratch code that is "maintainable" in some sense, I have to ask the question in the title.

Sure.
First is API Design Guidelines by Apple;
Second one is very popular Swift style guide by Ray Wenderlich team;
Also, i suggest you to use SwiftLint framework, that almost for free helps to find all non-conventions problems in your code.

Related

Networking on IOS using Alamofire [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I’m an IOS developer. I have a new client who wants me to teach him about Alamofire and the networking stuff, and to be honest, i’m bad at teaching.
so, can anyone suggest me a book or any tutorial that i can follow during the lecture?
thanks in advance.
Alamofire
https://www.raywenderlich.com/35-alamofire-tutorial-getting-started
https://codewithchris.com/alamofire/
https://learnappmaking.com/alamofire-swift-tutorial/
iOS Networking
https://learnappmaking.com/urlsession-swift-networking-how-to/
https://www.udacity.com/course/ios-networking-with-swift--ud421
Don't forget to check out official documentation as well.

Swift development pods [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
is there some good tutorial where I can follow, is there a good tutorial for better understanding, the ones I find i just create the pod and them publish, there is no implementation for me start to develop my own
This is a poorly formed question... But if you're asking how to use podfiles, this video works great: https://www.youtube.com/watch?v=MuMZZtQpB6Y
If you're trying to make a podfile, here you are: https://guides.cocoapods.org/making/making-a-cocoapod.html

Core Plot 0.4 tutorial iOS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Does anyone have a good tutorial/book recommendation for using Core Plot 0.4 in iOS. I have never used it before and from looking at the tutorials that they have linked to it does not make sense. I can't even run the Switch on the code tutorial. Where do I start?
If you decide to go with Core Plot 0.9, this tutorial is the most up-to-date one I have found:
http://www.johnwordsworth.com/2011/10/adding-charts-to-your-iphone-ipad-app-using-core-plot/
My only reservation about it is that his code seems a bit verbose for an introductory tutorial.
This link( http://allforiphone.sosblog.com/All-for-iPhone-b1/CorePlot-For-You-b1-p11.htm ) may help you adding core plot project with your project. To use the library you can check out the example provided by the creators. It is quite good.

Is there an opensource "MSWord doc to PDF" convert library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am trying to convert word(.doc) into PDF on iOS device. Is there an opensource solution where I can use as a C/C++ lib or something?
There really is no conveniently open-source library that will do this for you: you may get some mileage out of WvWare but I've never seen it used on iOS and I'm not sure what platform dependencies it may need.
If your iphone is connected to the net, then you can call a Docmosis web service to do it. You need to sign up though.

WebDav client library for iOS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there any WebDav client implementation for iOS ?
Have a look at WTclient.
try WTClient, it's written in objective-c.
I just started using DZWebDAVClient. It needs AFNetworking to work though.
Had no issues setting it up and has a block based API.
https://github.com/zwaldowski/DZWebDAVClient
Another recommendation i found elsewhere is ConnectionKit
https://github.com/karelia/ConnectionKit