NSString* docPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
Thursday, August 30, 2012
Thursday, August 23, 2012
Wednesday, August 01, 2012
Nil - NULL - NSNULL
There are 3 ways to represent a null value in Objective-C.
Nil -> Absence of value with Objective-C object variables.
Null -> Absence of value with C- style pointers.
NSNULL -> A nil boxed as an object for storage in a collection.
Subscribe to:
Posts (Atom)
Create a list in SwiftUI with sticky section headers
Sample Code import SwiftUI struct ContentView : View { @State var isCustomViewControllerDisplayed = false @State private va...

-
Function for getting hardware specific info such as CPU ID, Motherboard Serial Number, Drive Serial Numbers and MAC address . '*...
-
When you first start out programming iOS application, you’ll most likely notice the continued use of “delegates” throughout the SDK. The ...
-
New Features in Visual Studio 2012 For Microsoft, 2012 is the Year of New Releases. Major releases of Windows 8, Windows Server 2012,...