This Blog is for all iOS App Developers to get the code samples and working Code directly from the Blog.Iam requesting to all please add your inputs as well for the Blog can useful to all.
Search This Blog
Wednesday, March 19, 2014
Sorting Array
[favoriteArraysortUsingDescriptors:[NSArray arrayWithObject:[[NSSortDescriptor alloc]initWithKey:nilascending:YES]]];
Tuesday, March 11, 2014
File Appening
//append text to file (you'll probably want to add a newline every write)
NSFileHandle *file = [NSFileHandle fileHandleForUpdatingAtPath:filePath];
[file seekToEndOfFile];
[file writeData:[content dataUsingEncoding:NSUTF8StringEncoding]];
[file closeFile];
Subscribe to:
Comments (Atom)