Stack & Queue Implementation in Objective C Created By: Debasis Das (1-Oct-2015) In this article we will create two sample implementation for a stack and a queue in objective C. // KSStack.h // StackAndQueue // Created by Debasis Das on…
Stack & Queue Implementation in Objective C Created By: Debasis Das (1-Oct-2015) In this article we will create two sample implementation for a stack and a queue in objective C. // KSStack.h // StackAndQueue // Created by Debasis Das on…
Cocoa Layered Architecture for Mac OSX Created By: Debasis Das Below is a high level summary architecture diagram for the different layers in a Mac OSX for Cocoa App Development. Each layer helps achieve rich functionalities. Primarily the OSX is…
Web App vs Native App vs Hybrid App Written By: Debasis Das (23-May-2015) Today we are choosing a very controversial topic to write on, there is a never ending battle between technology experts and aficionados as to what is the…
Swift – print, println, NSLog Written By: Debasis Das (21-Mar-2015) We can use print, println and NSLog in Swift but before we start into sample code lets understand the difference of each Swift println vs Swift print Using println will…
Singleton Design Pattern in Cocoa Written By: Debasis Das (10-Mar-2015) Singleton Design Pattern is used when there can be exactly one instance of a class. Singleton design pattern provides a global point of access to the single instance of the…
Sharing code between ios and os x apps Written By: Debasis Das (25-Feb-2015) In this article we will exhibit how we can build an iOS and Mac OS X app for Sharing code between ios and os x apps ensuring maximum…
Framework vs Library (Static & Shared) in (Cocoa/OSX, Cocoa Touch/iOS) Written By: Debasis Das (20-Feb-2015) This article talks about various options of bundling reusable code in your (Cocoa – OSX) or (Cocoa Touch – iOS ) Applications Before understanding the difference between…
Programming in Swift Language Swift 2.0 Swift is a powerful programming language for iOS, OSX and Watch OS with a consise yet expressive syntax. One great thing about Swift is that it can co-exist with Objective C so untill and…