IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label synthesize. Show all posts
Showing posts with label synthesize. Show all posts

Sunday, August 18, 2013

@synthesize not added

I'm using Xcode 4.6.3.

 

When I right-click and drag on an object in the xib pane into the ViewController.h to create an Outlet connection, Xcode creates the property declaration in the header file, but the corresponding @synthesize entry and deallocation related statement that sets the property to nil is not being generated in the implementation file.

 

Am I missing something or is the a bug?

 

TIA


View the original article here

Saturday, August 17, 2013

@synthesize not added

I'm using Xcode 4.6.3.

 

When I right-click and drag on an object in the xib pane into the ViewController.h to create an Outlet connection, Xcode creates the property declaration in the header file, but the corresponding @synthesize entry and deallocation related statement that sets the property to nil is not being generated in the implementation file.

 

Am I missing something or is the a bug?

 

TIA


View the original article here

Re: @synthesize not added

No longer needed. An automatic, implicit, synthesize is generated. The backing variable is prefixed with a "_". For example @property (nonatomic, strong) NSString *foo has backing var of _foo. You can turn this off in the build settings for the project. And because of ARC you don't need a dealloc nil.


View the original article here