1,361 reputation
716
bio website techtreasure.in
location Ahmadabad, India
age 29
visits member for 3 years, 4 months
seen 44 mins ago
stats profile views 326

Having near 5 years of experience in IT industry.

sound knowledge in iPhone, iPad and iPod-touch Application development and java.


Jul
24
comment Will apple reject the app if we do not use Twitter framework for ios 5?
@JonTaylor i thought so, thanks for replay.
Jul
24
accepted iPhone programming
Jul
24
asked Will apple reject the app if we do not use Twitter framework for ios 5?
Jul
16
comment ios how to capture a particular portion of screen
this is helpful when you have to capture specific area of your screen.
Jun
20
awarded  Notable Question
May
28
awarded  Necromancer
Apr
23
comment UIImagePickerController not working with front (or rear) camera
open imagePicker.cameraDevice = UIImagePickerControllerCameraDeviceRear; then conver it to front.
Apr
20
comment To add image to an excelsheet in iphone
[[array componentsJoinedByString:@","] writeToFile:@"components.csv" atomically:YES encoding:NSUTF8StringEncoding error:NULL];
Apr
20
comment To add image to an excelsheet in iphone
[UIImage imageWithData:/*you data*/];
Apr
20
comment To add image to an excelsheet in iphone
convert image in data and add that data to worksheet.
Apr
20
comment IOS 5 TWTweetComposeViewController duplicate tweet
if you send duplicate tweet it give you error code 203.
Apr
19
comment iPhone: Issue comparing a date between current date and sixty days from current date
use compare function for NSDate.
Apr
19
comment SQLite SELECT while insert data to database
have you open database before fire query on that (sqlite3_open([/*database path*/ UTF8String], &database)!= SQLITE_OK)
Apr
19
awarded  Tenacious
Apr
19
comment Unable to Fetch Date from Array of Dates Using NSPredicate
create array of dates objects not string objects.
Apr
16
comment How to access the phone contact list and display it in tableview?
duplicate of this stackoverflow.com/questions/2744894/…
Apr
16
comment flowcover remove mirror from images at bottom
always welcome.
Apr
13
comment Fire notification if new message came and read this message in iPhone
@NarendraKumar apple is define some API is as private so developer is not able to use it. but objective-c is all depend on key-value pair, so we can access it, force fully. but when we going to upload app on app store, review can recognize it and reject you application
Apr
12
comment Insert NSarray items into specified UItableviewcell
how many row you create for table. numberofrowsInsection method count.
Apr
12
comment iphone. making UITextView but won't make it visible
_textView.delegate = self; write this line. no need to IBOutlet if your not put your control in .XIB file.