Monthly Archives: September 2014

Swift Learning Resources

Articles and Tutorials Wayne Bishop has written a awesome guide to the most common data structures and algorithms used – full code. Big O notation Sorting Linked Lists Generics Binary Search Trees Stacks & Queues Graph Algorithms Shortest Paths and traversals Heaps Make an Awesome Video Background View Using UIWebView (Objective-C & Swift) Jameson Quave Taking control of the iPhone…

1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading...

Playing with Strings

Combining strings let aString = “Hello” // Let’s play with strings today // we can combine strings using the + operator let newString = aString + ” swift lovers” // “Hello swift lovers” // string interpolaton can also be used to combine strings let a = “BAT” let b = “MAN” println(“\(a) + \(b) = \(a + b)”) // BAT…

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading...
Subscribe
We send about one email per week with our latest tutorials and updates
Never display this again :)