Using of CCWaves in iPhone
CCWaves is one of the interesting functionalities in Cocos2D iphone. Check out this following snippet to see how it works. Please leave your valuable comments on this post………………….
CCWaves is one of the interesting functionalities in Cocos2D iphone. Check out this following snippet to see how it works. Please leave your valuable comments on this post………………….
Unlike wordpress blogger, blogspot don’t have direct method (I said direct not ‘NO’!) to add categories to your posts. Just adding ‘Labels’ while you post your posts won’t work always. But it’s simple to categorize posts in your blogspot. Follow the simple steps below. (Google is always simple & will be!) 1. From your ‘Dashboard’… Read More »
#import “ViewController.h” @implementation ViewController @synthesize mlabel; – (void)viewDidLoad { [super viewDidLoad]; arrayNo = [[NSMutableArray alloc] init]; [arrayNo addObject:@” Hello “]; [arrayNo addObject:@” Hai “]; [arrayNo addObject:@” Picker “]; [arrayNo addObject:@” Simple “]; [arrayNo addObject:@” example “]; [pickerView selectRow:1 inComponent:0 animated:NO]; mlabel.text= [arrayNo objectAtIndex:[pickerView selectedRowInComponent:0]]; } – (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView; { return 1; } – (void)pickerView:(UIPickerView *)pickerView… Read More »