Advertisement
johnmahugu

tutorial 2 swift - overview

Jul 8th, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. Swift is a new programming language developed by Apple Inc for iOS and OS X development. Swift adopts the best of C and Objective-C, without the constraints of C compatibility.
  2.  
  3. Swift makes use of safe programming patterns.
  4. Swift provides modern programming features.
  5. Swift provides Objective-C like syntax.
  6. Swift is a fantastic way to write iOS and OS X apps.
  7. Swift provides seamless access to existing Cocoa frameworks.
  8. Swift unifies the procedural and object-oriented portions of the language.
  9. Swift does not need a separate library import for functionality like input/output or string handling.
  10.  
  11. Swift uses the same runtime as the existing Obj-C system on Mac OS and iOS which makes Swift programs run on many existing iOS 6 and OS X 10.8 platforms.
  12.  
  13. Swift comes with playground feature where Swift programmers can write their code and execute it to see the results immediately.
  14.  
  15. It took almost 14 years to bring the first public release of the Swift language starting from 2010 by Chris Lattner and later supported by many other contributors. and later a great collaboration of many other programmers. Swift has been included in Xcode 6 beta.
  16.  
  17. Swift designers took ideas from various other popular languages like Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement