Printf Formatting
>
%d %i Decimal signed integer.
%o Octal integer.
%x %X Hex integer.
%u Unsigned integer.
%c Character.
%s String. See below.
%f double
%e %E double.
%g %G double.
%p pointer.
%n Number of characters written by this printf.
No argument expected.
%% %. No argument expected.
Remove a startup application
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce]
Nokia gets another OS
Nokia are buying yet another operating system, I hope for the company involved (and people who have put their hard work into it), that it is used. Maybe this is a replacement for Series 40? Or maybe another canned project in years to come???
http://www.theregister.co.uk/2012/01/09/nokia_another_os/
Useful iOS Links
- Apps Amuck: Welcome to 31 Days of iPhone Apps. Good tutorials - “The key here is simple: “Taking baby steps is better than taking no steps at all” - may need some editing to run apps on iOS 4 or later
- iPhone Development 101
- The Complete Guide for Starting iPhone and iOS Development
- Blog Post about “Where to start”
- iPhone programming category tutorials on iCodeBlog
- Objective-C Beginner’s Guide
- The Objective-C 2.0 Programming Language: Introduction to The Objective-C 2.0 Programming Language (Apple)
- Programming in Objective-C (Developer’s Library) – Essential Book for Objective-C
- Blog Post: How to jump start iphone development
- Stanford University has a free online course (“iPhone Application Programming”
- Video tutorials (commercial, but some are free).
- “Geting Started” articles on Apple’s Developer Connection. Here is the “Getting Started with iPhone OS” tutorial.
- iPhone Tutorials: a lot of good tutorials for beginners, intermediate programmers and game developers
How to Clear or re-initialise a NSArray
It is a good idea to use an accessor to set the array to nil; the accessor will take care of releasing the array and all of its members:
[self setTestArray:nil];
If you need to clean out an array with many members but keep a valid array ready for use, you can call:
[self setTestArray:[[NSArray alloc] init]]];
This will replace the old array with a new, empty array.
UITable view tutorial
This is a really good, clear UI table view tutorial:
http://clingingtoideas.blogspot.com/2011/02/uitableview-how-to-part-3-multiple.html
>Symbian and S40 here to stay.
>Nokia have announced that they are going to rename Symbian Belle to Nokia Belle. Now is this a move that suggests mathballing? or one that is look to move it forward.
http://www.techspot.com/news/46756-nokia-renames-symbian-belle-to-nokia-belle-available-in-february.html
I think for Nokia to maintain their low end market share, the S60 (Symbian) and S40 platforms are here to stay.
The shuttleworth foundation’s take on this:
http://www.shuttleworthfoundation.org/nokia-symbianbelle-here-to-stay/
Blog Categories
Recent Posts
Recent Comments
- Steve on How to set the Navigation Bar Style.
- Clay on Good UISegmentedControl example
- Junior on Printf Formatting
- Kasey on Symbian Error Codes
- Dong on UITableView Separator colour


