| bio | website | techtreasure.in |
|---|---|---|
| location | Ahmadabad, India | |
| age | 29 | |
| visits | member for | 3 years, 4 months |
| seen | 2 hours 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.
|
May 3 |
comment |
Iphone:Taking the user to setting menu if internet is not connected Ya that's true but we don't want to upload this app on AppStore. can you please how to launch the other application form my application. |
|
May 3 |
comment |
Iphone:Taking the user to setting menu if internet is not connected int result =SBSLaunchApplicationWithIdentifier(CFSTR("com.apple.preferences"), false);if (result == 1) { NSLog(@"%@",(NSString*)SBSApplicationLaunchingErrorString(result)); } this is give error "SpringBoard is not running" and app is not going to launch. |
|
Mar 18 |
comment |
enterprise app distribution using OTA give error message in safari? sorry i can't share. |
|
Mar 18 |
comment |
enterprise app distribution using OTA give error message in safari? My app properly download from URL, but it show extra alert when i tap cancel button on first alert and try again to download app. |
|
Mar 18 |
asked | enterprise app distribution using OTA give error message in safari? |
|
Mar 14 |
awarded | Nice Answer |
|
Jan 1 |
awarded | Yearling |
|
Dec 6 |
answered | how to use showFromTabBar with tabbed application in Interface Builder? |
|
Nov 19 |
comment |
Load a nib in second View stackoverflow.com/questions/8838154/… |
|
Nov 19 |
comment |
Load a nib in second View create UIView in place of UIViewcontroller and use following line of code UIView *view =[[[NSBundle mainBundle] loadNibNamed:@"SubViewController" owner:self options:nil]objectAtIndex:0]; [self.view addSubview:view]; |
|
Nov 19 |
comment |
Back button to UIViewController from UITableVIew IOS Back button automatically appear when you push view controller but when you present any view controller you have to do it manually. |
|
Nov 15 |
comment |
Im trying to make an iphone app similar to find my friends how do i find the location of my friends on the map? Please refer Corelocaiton framework. |
|
Nov 15 |
comment |
How do i call class method dynamically in IOS? Please check this. stackoverflow.com/questions/1748350/… |
|
Nov 12 |
comment |
how to create an exact copy of plist in documents directory [[NSFileManager defaultManager] copyItemAtPath:<#(NSString *)#> toPath:<#(NSString *)#> error:<#(NSError **)#>]; |
|
Nov 12 |
comment |
How to get my time in UTC for iPhone project? you can use NSDateFormatter for this set timezone to "UTC" convert your date in UTC |
|
Nov 12 |
comment |
Data persistance tableView issue iPhone(reading and writing to plist) @user1814207 i am facing same issue, but that is due to you store object of Alarm class in plist file not NSDictonary. see in your AlarmEditController class and try to retrive NSDictonary object. |
|
Nov 12 |
comment |
Data persistance tableView issue iPhone(reading and writing to plist) @user1814207 in your code you never call save method to write data in to file just add object in array please call save method of AlarmListController so your object is added to file. |
|
Nov 12 |
answered | Data persistance tableView issue iPhone(reading and writing to plist) |
|
Nov 9 |
comment |
Multiple Custom Cells dynamically loaded into a single tableview @KyleBegeman please check i edited my code. |
|
Nov 9 |
revised |
Multiple Custom Cells dynamically loaded into a single tableview added 28 characters in body |