Are there any plans to support Swift 4 with Material? - swift4

I'm using Material framework under Swift 3.1 (Xcode 8.x), but now under Swift 4 (Xcode 9) it is not able to compile... are there any plans to convert to Swift 4?

As of Material 2.10.3 - The master branch supports Swift 4 :) All the best!

Related

flutter_admob how to integration with IOS swift

I'm trying to implementation flutter_admob to show "native ads" in IOS swift but only I found example in Object-c!!
is there any way to implement it in swift code without use any package else

Is it possible to use Alamofire 3 with Swift 3?

My project was written in Swift 2.3 and running Alamofire 3.4.1.
Recently I attempted to upgrade my project to Swift 3 as well as its dependency Alamofire to version 4.
The problem is Alamofire changed some things which I can not fix at the moment.
So my question is, is it possible to use Alamofire 3 with Swift 3?
Thanks.

What should I convert my framework project to swift 2.3 or 3?

I have a framework project and want to convert to support swift 2.3 and 3.
given the consumer of my SDK might be on swift 2.3 or 3, what should I convert my framework to? do I need to create 2 frameworks for distribution?
You don't have to prepare two versions of Framework. While opening your code in Xcode8 you will see convert option, do not click on that. Compile your code and you will see the potential warnings and errors.
You can resolve it using the compiler command
#if swift(>=3.0)
// Add your code to work in swift3
#else
// Add your code to work in the swift 2.3. This one you already have.
#endif

whether other iOS except iOS 5 will support this framework or not?

I am not getting any good code for integrating text with image upload on twitter using iphone sdk. I found that with release of iOS 5 a framework named Twitter.Framework is also released. Will this framework be supported on older iOS?
No, Twitter integration got introduced in iOS 5. You'll need to find a third party library for older versions of iOS.

Where can I find a list of all the new iOS 5 APIs?

I'm looking for a reference guide or list of all the new iOS 5 APIs. Apple's website isn't the most user friendly.
You mean something like this?
iOS 4.3 to iOS 5.0 API Differences
or
What's New in iOS 5