| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 3 months |
| seen | Oct 7 '11 at 9:15 | |
| stats | profile views | 16 |
|
Dec 23 |
awarded | Nice Question |
|
Nov 22 |
awarded | Notable Question |
|
Jul 6 |
awarded | Commentator |
|
Mar 16 |
awarded | Popular Question |
|
Feb 13 |
awarded | Teacher |
|
Feb 2 |
awarded | Popular Question |
|
Jan 26 |
awarded | Popular Question |
|
Jun 14 |
awarded | Notable Question |
|
Feb 1 |
awarded | Popular Question |
|
Oct 28 |
awarded | Popular Question |
|
Jun 17 |
comment |
HTML5 Bluetooth and Audio From a bluetooth device to the browser. |
|
Jun 17 |
asked | HTML5 Bluetooth and Audio |
|
Apr 30 |
answered | iphone: Adding UIRequiredDeviceCapabilitie |
|
Apr 24 |
comment |
iphone: Adding UIRequiredDeviceCapabilitie Thanks. I am doing this is part of submission to Apple Store. Minor corrections after steps 3-4 3 Add UIRequiredDeviceCapabilities with value type=Dictionary on the Key column 4 Add another row under UIRequiredDeviceCapabilities 1. Add still-camera with value type=Boolean on the Key column 2. Check the box on the Value column |
|
Apr 24 |
awarded | Student |
|
Apr 24 |
asked | iphone: Adding UIRequiredDeviceCapabilitie |
|
Apr 15 |
comment |
Creating Application URL for iPhone Thanks. Are you saying that www.mycompany.com is acceptable? |
|
Apr 15 |
asked | Creating Application URL for iPhone |
|
Apr 11 |
comment |
iPhone: UIImagePickerController Randomly Fails to Take Picture "UIImagePickerControllerSourceTypeCamera hogging up memory" - stackoverflow.com/questions/565886/… - explains my problem |
|
Apr 11 |
comment |
iPhone: UIImagePickerController Randomly Fails to Take Picture I have just run XCode -> Run -> Run With Performance Tool -> Leaks. It says that I have a leak on the following code specifically on line "UIImagePickerController *picker = [[UIImagePickerController alloc] init];". But I don't understand why. Do I do something wrong? - (void)picturePicker:(UIImagePickerControllerSourceType)theSource { UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.sourceType = theSource; picker.allowsEditing = NO; [self presentModalViewController:picker animated:YES]; [picker release]; } |