May 25

Meeting Tonight: May 25th

By admin Objective-C Comments Off

We’ll be meeting tonight, at Startdust Coffee and Video, at 7pm.

Agenda:

- Open Hacking/Coding Session

- Discuss Planet Digital iPhone Development

Stardust Coffee and Video
1842 E. Winter Park Road
Orlando, FL 32803
(407) 623-3393

Mar 19

In addition to writing code for the Mac and Iphone,  NSCoder Night Orlando supports Refresh Orlando and the Refreshing Cities Manifesto, specifically we support building a community of designers and developers working to refresh the creative, technical, and professional culture of New Media endeavors in their areas. Promoting design, technology, usability, and standards.

NSCoder Night Orlando members are invited to attend the Refresh Orlando March meeting on Tuesday night in downtown Orlando. We will be discussing the iPhone User Interface Elements.

Please RSVP at http://refreshorlando-iphone-ui-elements.eventbrite.com/

Feb 16

Meeting Tonight Feb. 16

By admin Objective-C Comments Off

We’ll be meeting tonight, at Startdust Coffee and Video, at 7pm.

Agenda: Open Hacking/Coding Session

Stardust Coffee and Video
1842 E. Winter Park Road
Orlando, FL 32803
(407) 623-3393

Jan 01

Happy New Year!

By admin Objective-C Comments Off

Happy New Year!

NSCoder Night Orlando

Nov 24

We’ll be meeting tonight, at Startdust Coffee and Video, at 7pm.

Agenda: Open Hacking/Coding Session

Stardust Coffee and Video
1842 E. Winter Park Road
Orlando, FL 32803
(407) 623-3393

Nov 10

We’ll be meeting tonight, at Startdust Coffee and Video, at 7pm.

Agenda: Open Hacking/Coding Session

Stardust Coffee and Video
1842 E. Winter Park Road
Orlando, FL 32803
(407) 623-3393

Nov 09

Entry Level iPhone Application Developer needed for part-time work

Venture Intellectual LLC is looking for an entry level iPhone App developer to assist with the production of breakthrough applications for the iPhone.  The candidate should be smart and highly imaginative and should have extensive experience with object oriented programming.

Responsibilities:

  • Write Objective-C code for iPhone applications

Qualifications:

  • Knowledge of Objective C and iPhone 3.x SDK
  • Experience working with Xcode

Availability:

  • Up to 20 hours a week

E-mail resume to: recruiting@ventureintellectual.com

Nov 02

iPhone Ad-Hoc distribution problems

By Walt Sellers Xcode Comments Off
Well,  an interesting bit of problem-solving today. I sent a revision of an app to a client with ad-hoc distribution.  It installed just fine on one device, but would not install on the other. (The one that was going to be used to demo the product.) I double-checked that both device IDs were properly included in [...]
Oct 27

Meeting Tonight Oct. 27

By admin Objective-C Comments Off

We’ll be meeting tonight, at Startdust Coffee and Video, at 7pm.

Agenda: Open Hacking/Coding Session

Stardust Coffee and Video
1842 E. Winter Park Road
Orlando, FL 32803
(407) 623-3393

Oct 27

A Cocoa Class

By admin Objective-C Comments Off

An example of a Cocoa class, with one instance member and one outlet. Note that the retain propertytype specifies that retain is automatically called when the accessor is invoked.


// MyClass.h
@interface MyClass : NSObject
{
NSString* myString;
UIViewController* myViewController; //connected via Interface Builder
}


@property(nonatomic, retain) NSString* myString;
@property(nonatomic, retain) IBOutlet UIViewController* myViewController;

-(void)initWithString:(NSString*)initString;
@end

//////////////////////////////////


// MyClass.m

@implementation MyClass
@synthesize myString;
@synthesize myViewController;

-(void)initWithString:(NSString*)initString {
myString = initString;
[super init];
}

-(void)dealloc {
[myString release];
myString = nil;

[myViewController release];
myViewController = nil;
[super dealloc];
}

@end

preload preload preload