iOS 5 Beta 3 ready for iPhone Developer Now iOS 5 Beta 3 Build 9A5259f is ready for developer in Apple Developer portal.
iOS 5 beta 2 available for Developer
iOS 5 beta 2 available for Developer Paid Developer can download iOS 5 beta 2 from apple developer portal
iOS 5 Beta for Developer [iOS Development News]
iOS 5 Beta for Developer [iOS Development News] iOS 5 Beta available only for developer. iOS 5, the latest version of the world’s most advanced operating system, includes over 200 new user features, and an updated SDK with over 1,500 new APIs and powerful new development tools. Start implementing an incredible array of new features that [...]
cocos2d v1.0.0-rc2 released for iPhone iPad iOS Developer
cocos2d for iPhone v1.0.0-rc2 is available for download: cocos2d-iphone-1.0.0-rc2.tar.gz Highlights: Xcode 4 templates improvements Support for Particle Designer 1.3.70 Full Changelog: CHANGELOG Release Notes: Release_Notes API Reference: API Reference
cocos2d v1.0.0-rc released for iPhone iPad iOS Developer
cocos2d v1.0.0-rc released for iPhone iPad iOS Developer Highlights: Xcode 4 templates both for iOS and Mac. Includes: cocos2d, cocos2d + Box2d and cocos2d + Chipmunk templates Updated 3rd party libraries: uthash, FontLabel, TouchJSON And many bug fixes Can download from original website http://www.cocos2d-iphone.org/
Xcode 4.0.2 and iOS SDK 4.3 update for iPhone developer
Xcode 4.0.2 and iOS SDK 4.3 update for iPhone developer This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. All iOS MacOS developer can retive the Xcode 4.0.2 and iOS [...]
[iOS News Update] iOS 4.3 beta 3 is Available Now
[iOS News Update] iOS 4.3 beta 3 is Available Now [iOS News Update] iOS 4.3 beta 3 is Available Now iOS 4.3 beta 3 and iOS 4.3 SDK beta 3 are now available from the iOS Dev Center. Only install iOS 4.3 beta on devices dedicated to testing apps built with iOS SDK 4.3 beta. [...]
[iOS News Update] iOS 4.3 beta is Available Now
[iOS News Update] iOS 4.3 beta is Available Now iPhone iPad iOS development services Xcode and iOS SDK 4.3 beta This is a pre-release version of the iOS SDK, as part of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. Please review the Release Notes, and Readme before installing. AirPlay Stream video from your [...]
[Cocos2d] Cocos2D and UIScrollView iPhone Game Development
CocosOverlayViewController.h [code=""""""""""] #import @interface CocosOverlayViewController : UIViewController { } @end [/code] CocosOverlayViewController.m [code=""""""""""] #import "CocosOverlayViewController.h" #import "CocosOverlayScrollView.h" @implementation CocosOverlayViewController // Implement loadView to create a view hierarchy programmatically, without using a nib. - (void)loadView { CocosOverlayScrollView *scrollView = [[CocosOverlayScrollView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame]; // NOTE - I have hardcoded the size to 1024x1024 as that is [...]
[Cocos2d] Find object by Tag
[code=""] -(id) init { if ((self = [super init])) { CCLabel* label = [CCLabel labelWithString:@"Hello World" fontName:@"Marker Felt" fontSize:64]; CGSize size = [[CCDirector sharedDirector] winSize]; label.position = CGPointMake(size.width / 2, size.height / 2); [self addChild: label]; label.tag = 13; self.isTouchEnabled = YES; } return self; } -(void) ccTouchesBegan:(NSSet*)touches withEvent:(UIEvent*)event; { CCLabel* label = (CCLabel*)[self getChildByTag:13]; [...]
