Parveen Kaler

CEO / Founder | Smartful Studios Inc.

Tag: Programming

April Vancouver iPhone Developers Meetup

The April iPhone Developers Meetup takes place this Thursday at Workspace.
April iPhone Developers Meetup
Workspace - http://www.abetterplacetowork.com/
400 – 21 Water Street
Vancouver, B.C.
Thursday April 16, 2009
6:30PM – 8:30PM
I’m not scheduled to speak this time around.  There is two hours scheduled so I may jump in with some information if there is time left over.  I’ve been doing a [...]

Vancouver iPhone Developers Group

Steve Wart is organizing the first meeting for the Vancouver iPhone Developers Group.  Here are the details for the first meeting:
BCIT Downtown Campus
555 Seymour Street
Room 353
Thursday, October 16, 2008
6:30PM – 8:00PM
This is the agenda that Steve sent for the meeting:
It’s open to anyone who is interested in iPhone development, in particular just getting up to [...]

iPhone Development: Reading Objective-C Methods

When teaching Objective-C, I’m finding that some have trouble reading method signatures.  Reading Objective-C methods can be made easier if proper spacing and indenting is used.
This is what a method looks like in Objective-C:
- (ret-type) keyword:(arg-type)arg-name keyword:(arg-type)arg-name
It is much easier to read if it is typed as such:
- (ret-type) keyword:(arg-type)arg-name
[...]