MyPage is a personalized page based on your interests.The page is customized to help you to find content that matters you the most.


I'm not curious

Its Apple Swift in action at WWDC 2014

Published on 04 June 14
0
0
What is Swift
Its Apple Swift in action at WWDC 2014 - Image 1
Swift is a new programming language created by Apple for iOS and OS X app development. The
The new programming language. It is built with the LLVM (Low Level Virtual Machine) compiler included in Xcode 6 beta. Swift adopts safe programming patterns and adds modern features to make programming easier, more flexible, and more fun.
Sample Code:
var implicitInteger = 70
var implicitDouble = 70.0
var explicitDouble: Double = 70
let apples = 3
let oranges = 5
let appleSummary = "I have \(apples) apples."
let fruitSummary = "I have \(apples + oranges) pieces of fruit."
println("Hello, world")

let people = ["Anna": 67, "Beto": 8, "Jack": 33, "Sam": 25]
for (name, age) in people {
println("\(name) is \(age) years old.")
Curious to learn Swift, the ebook is available for free. You can download from itunes or you can also view the entire Swift Programming Language documentation here

The benefits that Swift offers
  • It is Object oriented
  • The programmers will be able to see results of their programming in real time
  • Its faster than Objective C and Python
  • Supports some functional programming styles
  • Supports modern language features (optional typing, generics, type inference, namespaces)
  • Identifiers can be Unicode characters (Variable names can be in Chinese)
  • Interoperable with Objective C
Get your hands dirty on Swift: Try at and test it here. You can starting building your apps but they can be listed on app store after the availability of latest OS X in Fall 2014.

What will happen to existing apps on Apple store written in Objective C?

Well Swift code can run alongside Objective-C and C in the same application.

Conclusion:

Swift is here to help people build iOS apps at ease and with little or no knowledge of programming. You may see advanced graphics on your screens with the new programming language. Having said that the problem of the developers still continues as they still need to develop applications in each platform separately.

This is just the beginning and the developer community has to decide whether Apple Swift action will be a success or it will be just another programming language like Google Go.
This blog is listed under Development & Implementations , Gadgets , Peripherals , Hardware and Mobility Community

Related Posts:

Apple

 

Swift

 
Post a Comment

Please notify me the replies via email.

Important:
  • We hope the conversations that take place on MyTechLogy.com will be constructive and thought-provoking.
  • To ensure the quality of the discussion, our moderators may review/edit the comments for clarity and relevance.
  • Comments that are promotional, mean-spirited, or off-topic may be deleted per the moderators' judgment.
You may also be interested in
 
Awards & Accolades for MyTechLogy
Winner of
REDHERRING
Top 100 Asia
Finalist at SiTF Awards 2014 under the category Best Social & Community Product
Finalist at HR Vendor of the Year 2015 Awards under the category Best Learning Management System
Finalist at HR Vendor of the Year 2015 Awards under the category Best Talent Management Software
Hidden Image Url

Back to Top