User Prakash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T03:45:39Z http://stackoverflow.com/feeds/user/123 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856192/create-uiimage-with-a-specific-color/1856523#1856523 0 Answer by Prakash for Create UIImage with a specific color Prakash 2009-12-06T20:37:57Z 2009-12-06T20:37:57Z <p>I wonder why you say not possible to set selected background view..</p> <pre><code>// Default is nil for cells in UITableViewStylePlain, and non-nil for UITableViewStyleGrouped. The 'backgroundView' will be added as a subview behind all other views. @property(nonatomic,retain) UIView *backgroundView; // Default is nil for cells in UITableViewStylePlain, and non-nil for UITableViewStyleGrouped. The 'selectedBackgroundView' will be added as a subview directly above the backgroundView if not nil, or behind all other views. It is added as a subview only when the cell is selected. Calling -setSelected:animated: will cause the 'selectedBackgroundView' to animate in and out with an alpha fade. @property(nonatomic,retain) UIView *selectedBackgroundView; </code></pre> http://stackoverflow.com/questions/1842219/can-you-change-the-cursor-color-in-a-uitextview/1843201#1843201 0 Answer by Prakash for Can you change the cursor color in a UITextView? Prakash 2009-12-03T21:54:47Z 2009-12-03T21:54:47Z <p>I believe they are private API and not recommended to use..</p> http://stackoverflow.com/questions/1832041/how-to-programatically-detect-earpiece-in-iphone/1832449#1832449 1 Answer by Prakash for How to programatically detect earpiece in iphone? Prakash 2009-12-02T11:52:38Z 2009-12-02T11:52:38Z <p>You should register for AudioRoute changed notification and implement how you want to handle the rout changes</p> <pre><code> // Registers the audio route change listener callback function AudioSessionAddPropertyListener (kAudioSessionProperty_AudioRouteChange, audioRouteChangeListenerCallback, self); </code></pre> <p>and within the callback, you can get the reason for route change</p> <pre><code> CFDictionaryRef routeChangeDictionary = inPropertyValue; CFNumberRef routeChangeReasonRef = CFDictionaryGetValue (routeChangeDictionary, CFSTR (kAudioSession_AudioRouteChangeKey_Reason)); SInt32 routeChangeReason; CFNumberGetValue (routeChangeReasonRef, kCFNumberSInt32Type, &amp;routeChangeReason); if (routeChangeReason == kAudioSessionRouteChangeReason_OldDeviceUnavailable) { // Headset is unplugged.. } if (routeChangeReason == kAudioSessionRouteChangeReason_NewDeviceAvailable) { // Headset is plugged in.. } </code></pre> http://stackoverflow.com/questions/1825854/uitextfield-text-value-returns-garbage/1825880#1825880 1 Answer by Prakash for UITextField text value returns garbage Prakash 2009-12-01T12:24:10Z 2009-12-01T12:24:10Z <pre><code>NSLog(@"text field text:%@",textField.text); </code></pre> http://stackoverflow.com/questions/1825235/how-to-realize-the-same-effect-like-iphones-homescreen/1825327#1825327 1 Answer by Prakash for How to realize the same effect like iPhone's homescreen Prakash 2009-12-01T10:32:44Z 2009-12-01T10:32:44Z <p>Check <code>TTLauncherView</code> from <a href="http://github.com/facebook/three20" rel="nofollow">Three20</a>,</p> http://stackoverflow.com/questions/1807415/sending-xml-file-from-iphone-to-a-server-using-post-method/1807457#1807457 0 Answer by Prakash for sending XML file from IPhone to a server using Post Method Prakash 2009-11-27T08:40:24Z 2009-11-27T08:40:24Z <p>You do this for requestString and aRequest,but not after formatting together with your addition..</p> <p>Try </p> <pre><code>httpBody = [httpBody stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; </code></pre> <p>before</p> <pre><code>NSData *aData = [httpBody dataUsingEncoding:NSUTF8StringEncoding]; </code></pre> http://stackoverflow.com/questions/1805031/iphone-development-xcode-putting-user-input-names-into-text-array/1805170#1805170 0 Answer by Prakash for iPhone Development xcode : Putting user input (names) into text array Prakash 2009-11-26T18:53:31Z 2009-11-26T18:53:31Z <pre><code>NSArray *array = [NSArray arrayWithObjects:@"One", @"Two", @"Three", @"Four", nil]; for (NSString *element in array) { // Log to console.. NSLog(@"element: %@", element); //Show in alert.. Really?? UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"ALERT TITLE" message:element delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; } </code></pre> http://stackoverflow.com/questions/1803717/suporting-rm-audio-formats-in-iphone/1803786#1803786 0 Answer by Prakash for suporting .rm audio formats in iPhone Prakash 2009-11-26T13:52:13Z 2009-11-26T13:52:13Z <p>When the built-in SDK doesn't provide support, the only option is to roll your own codec and play!</p> <p>Check audio units if you are motivated to do that!</p> http://stackoverflow.com/questions/1803609/how-to-add-2-buttons-into-the-uinavigationbar-on-the-right-side-without-ib/1803727#1803727 3 Answer by Prakash for How to add 2 buttons into the uinavigationbar on the right side without IB? Prakash 2009-11-26T13:41:03Z 2009-11-26T13:41:03Z <p>You can create a UIView and add two buttons in that view. And add that UIView as right button :)</p> <pre><code>UIView* rightItem = [UIView alloc] initWithFrame:frame]; //Create UIButton1 b1 //Create UIButton2 b2 [rightItem addSubview:b1]; [rightItem addSubview:b2]; self.navigationItem.rightBarButtonItem = rightItem; </code></pre> http://stackoverflow.com/questions/1802592/internet-problem/1802666#1802666 0 Answer by Prakash for internet problem Prakash 2009-11-26T09:48:08Z 2009-11-26T09:48:08Z <p>Apple's recommendation is to do something like (or use) <a href="http://developer.apple.com/iphone/library/samplecode/Reachability/index.html" rel="nofollow">Reachability</a></p> http://stackoverflow.com/questions/1795407/programmatically-pressing-a-uitabbar-button-in-xcode/1795460#1795460 3 Answer by Prakash for Programmatically pressing a UITabBar button in Xcode Prakash 2009-11-25T08:32:16Z 2009-11-25T20:50:09Z <pre><code>[myTabBarController setSelectedIndex:index] </code></pre> <p>EDIT: Answering the part 2 question from the comment:</p> <p>You can define a method in AppDelegate for switching to a different tab. </p> <p>And you can get hold of appdelegate from anywhere and send a message.. something like:</p> <pre><code> MyAppDelegate *appDelegate = (MyAppDelegate*) [[UIApplication sharedApplication] delegate]; [appDelegate SwitchToTab:index] </code></pre> http://stackoverflow.com/questions/1796878/how-to-fill-one-uitableviewcell-with-odd-and-even-entries-from-an-nsmutablearray/1796928#1796928 0 Answer by Prakash for How to fill one UItableViewCell with odd and even entries from an NSMutableArray? Prakash 2009-11-25T13:31:51Z 2009-11-25T13:31:51Z <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { // the usual cell creation/reuse stuff.. // obtain Label1, 2 by viewWithTag.. // index is your instance variable.. index = indexPath.row * 2; Label1.text = [myArr objectAtIndex:index]; Label2.text = [myArr objectAtIndex:index + 1]; } </code></pre> http://stackoverflow.com/questions/1795740/uipicker-didselectrow-strange-behavior/1796156#1796156 0 Answer by Prakash for UIPicker didSelectRow Strange Behavior Prakash 2009-11-25T10:55:24Z 2009-11-25T10:55:24Z <p>Users will use fingers and not mouse :) You should prefer testing these kinda things on device.. </p> <p>Have you already seen What happens on the device?</p> http://stackoverflow.com/questions/1789218/touch-effect-for-button-in-iphone/1789526#1789526 0 Answer by Prakash for touch effect for Button in iphone Prakash 2009-11-24T11:37:29Z 2009-11-24T11:37:29Z <p>Guess you have already asked this issue differently <a href="http://stackoverflow.com/questions/1747902/highlight-the-buttons-when-the-focus-is-on-it">here</a>..</p> <p>But have you checked the answer?? You can use any of those methods at your will!</p> http://stackoverflow.com/questions/1784020/iphone-photoshop-like-effects/1784170#1784170 0 Answer by Prakash for iPhone – Photoshop like effects Prakash 2009-11-23T16:12:05Z 2009-11-23T16:12:05Z <p>Check <a href="http://developer.apple.com/iphone/library/samplecode/QuartzDemo/index.html" rel="nofollow">QuartzDemo</a></p> <p>Focus on Blending Demo ;)</p> http://stackoverflow.com/questions/1783119/iphone-app-using-objective-c-and-cocoa-touch-how-do-i-create-native-contacts-li/1783577#1783577 0 Answer by Prakash for iphone app. using objective c and cocoa touch ,how do i create native contacts like app. Prakash 2009-11-23T14:47:58Z 2009-11-23T14:47:58Z <p>If you could post some code, it would be easy to suggest!</p> <p>Right now, it looks like you have gotten hold of contact which you want to display. Is it correct?</p> http://stackoverflow.com/questions/1783318/decrease-tabbaritem-title-font-size/1783557#1783557 0 Answer by Prakash for Decrease TabbarItem Title Font Size Prakash 2009-11-23T14:44:36Z 2009-11-23T14:44:36Z <p>Do you want each tabbar item's label to have different font size?</p> <p>This cannot be done through any simple property settings. Even though you could subclass TabbarController and achieve what you want, i wouldn't recommend it. (Mainly because, it wouldn't be pretty and will be inconsistent UI, unless you pull a kickass tabbar out of this experiment)</p> http://stackoverflow.com/questions/1780358/crash-at-splash-screen-iphone/1780413#1780413 0 Answer by Prakash for Crash At Splash Screen, iPhone Prakash 2009-11-22T23:31:48Z 2009-11-22T23:31:48Z <p>I would suggest you implement the Splash screen logic differently than the current cruel one :)</p> <p>perhaps, you could create a UIView covers the whole screen, upon touch or after a timeout, self destructs (removeFromSuperview)??</p> http://stackoverflow.com/questions/1770917/displaying-nearby-businesses-in-mapkit/1771661#1771661 1 Answer by Prakash for Displaying nearby businesses in mapkit Prakash 2009-11-20T16:31:03Z 2009-11-20T16:31:03Z <p>This is an interesting and emerging business idea!</p> <p>I live in Nordic region and there is an <a href="http://www.allakartor.se/" rel="nofollow">open Mashups</a> especially for sweden. By open i mean, any one can request and get access to the content to find nearby Cafe / WiFi / Sushi restaurants etc..</p> <p><strong>BEGIN PLUG WARNING</strong></p> <p>Check my <a href="http://www.dearprakash.com/site/App%5FGallery/Entries/2009/10/20%5FiKartor.html" rel="nofollow">iphone application</a> which fetches content from the mashups and display using MapKit!</p> <p><strong>END PLUG WARNING</strong></p> <p>And there is a commercial content provider called <a href="http://www.info24.se/portal/en/HOME.aspx" rel="nofollow">Info24</a> for nordic countries at the moment.</p> http://stackoverflow.com/questions/1771409/are-multiple-uiview-animation-callbacks-a-bad-idea-i-e-cause-mem-issues/1771524#1771524 1 Answer by Prakash for Are multiple UIView animation callbacks a bad idea (i.e. cause mem issues)? Prakash 2009-11-20T16:11:12Z 2009-11-20T16:11:12Z <p>Multiple animation shouldn't cause memory warnings..</p> <p>I suggest you should run Instruments for Leaks, ObjectAlloc &amp; CPU Samplers.. That would give a much better view than <code>NSLogs</code> in <code>dealloc</code></p> http://stackoverflow.com/questions/1755512/iphone-device-test-issue/1756140#1756140 1 Answer by Prakash for iPhone device test Issue Prakash 2009-11-18T13:52:09Z 2009-11-18T13:52:09Z <p>Did you say, you have added to project?</p> <p>And, do you see them in <code>Project Settings -&gt; Build -&gt; Code Signing identity</code>?</p> http://stackoverflow.com/questions/1755004/table-view-rotate-but-not-properly-shape-change/1755115#1755115 0 Answer by Prakash for Table View rotate, but not properly (shape change) Prakash 2009-11-18T10:39:21Z 2009-11-18T10:39:21Z <p>Check <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/CocoaViewsGuide/WorkingWithAViewHierarchy/WorkingWithAViewHierarchy.html" rel="nofollow">this</a>, and focus the section Autoresizing of Subviews</p> <p>You can do this graphically in IB and as well as in code!</p> http://stackoverflow.com/questions/1754933/iphone-ebook-app/1754968#1754968 0 Answer by Prakash for iPhone ebook app Prakash 2009-11-18T10:16:15Z 2009-11-18T10:16:15Z <p>Have a look at <a href="http://developer.apple.com/iphone/library/samplecode/QuartzDemo/index.html" rel="nofollow">QuartzDemo</a></p> <blockquote> <p>QuartzDemo is an iPhone OS application that demonstrates many of the Quartz2D APIs made available by the CoreGraphics framework. Quartz2D forms the foundation of all drawing on iPhone OS and provides facilities for drawing lines, polygons, curves, images, gradients, PDF and many other graphical facilities.</p> </blockquote> http://stackoverflow.com/questions/1754902/ask-about-tab-bar-viewdidload/1754917#1754917 1 Answer by Prakash for Ask about Tab Bar, viewDidLoad Prakash 2009-11-18T10:09:10Z 2009-11-18T10:09:10Z <p>Without knowing much, i could say, You should organize your data better way!</p> <p>Tabbar viewcontrollers wont be loaded again while switching! You can handle <code>ViewWillAppear</code> though..</p> http://stackoverflow.com/questions/1754797/distinguish-between-click-on-accessoryview-and-cell-content-and-will-apple-allow/1754868#1754868 2 Answer by Prakash for Distinguish between click on AccessoryView and Cell Content and will Apple allow it?(iPhone) Prakash 2009-11-18T09:59:19Z 2009-11-18T09:59:19Z <p>Implement the Delegate method to handle taps on accessory button</p> <pre><code>- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath; </code></pre> <p>And you know how to handle cell selection..</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; </code></pre> http://stackoverflow.com/questions/1753439/animate-the-enabling-of-a-uibarbuttonitem/1753869#1753869 0 Answer by Prakash for Animate the enabling of a UIBarButtonItem? Prakash 2009-11-18T05:36:35Z 2009-11-18T05:36:35Z <p>Here's an idea :)</p> <p>Within your animation block, Remove the button from view and add it again with disabled state. You can specify what kinda animation you want here..</p> http://stackoverflow.com/questions/1749141/how-to-check-the-url-of-a-webview/1749195#1749195 0 Answer by Prakash for How to check the URL of a WebView? Prakash 2009-11-17T14:19:17Z 2009-11-17T14:19:17Z <pre><code>NSURL *url = myWebView.request.URL; </code></pre> http://stackoverflow.com/questions/1748081/solution-for-iphone-new-file-dialog-keyboard/1748110#1748110 1 Answer by Prakash for Solution for iPhone new file dialog keyboard Prakash 2009-11-17T11:02:38Z 2009-11-17T11:02:38Z <p>You can implement the delegate method</p> <p>For UITextField,</p> <pre><code>- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string; // return NO to not change text </code></pre> <p>For UITextview</p> <pre><code>- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text; </code></pre> <p>and decide weather to append the entered characters or not.</p> http://stackoverflow.com/questions/1747902/highlight-the-buttons-when-the-focus-is-on-it/1748046#1748046 2 Answer by Prakash for highlight the buttons, when the focus is on it Prakash 2009-11-17T10:52:09Z 2009-11-17T10:52:09Z <p>There is no way to detect your finger hovering over the button until you actually touch..</p> <p>But you can use the following methods to change button appearances when its pressed but not yet released or whatever state you like to handle..</p> <pre><code>- (void)setTitle:(NSString *)title forState:(UIControlState)state; - (void)setTitleColor:(UIColor *)color forState:(UIControlState)state; - (void)setTitleShadowColor:(UIColor *)color forState:(UIControlState)state; - (void)setImage:(UIImage *)image forState:(UIControlState)state; - (void)setBackgroundImage:(UIImage *)image forState:(UIControlState)state; </code></pre> http://stackoverflow.com/questions/55322/jvm-choices-on-windows-mobile 2 JVM choices on Windows Mobile.. Prakash 2008-09-10T21:05:06Z 2009-11-16T12:42:38Z <p>What are the JVM implementations available on Windows Mobile?</p> <p><a href="http://www.esmertec.com/40.html" rel="nofollow">Esmertec JBed</a> is the one on my WinMo phone.</p> <p>Wondering how many other JVM vendors are in this zone. Are there any comparison or benchmarking data available?</p> http://stackoverflow.com/questions/1856192/create-uiimage-with-a-specific-color/1856523#1856523 Comment by Prakash on Create UIImage with a specific color Prakash 2009-12-07T09:27:39Z 2009-12-07T09:27:39Z ok.. can you post your practical code? http://stackoverflow.com/questions/1845955/iphone-big-icons-standard Comment by Prakash on iPhone big Icons standard Prakash 2009-12-04T13:26:55Z 2009-12-04T13:26:55Z What exactly are you asking? And where is this &quot;Recommendations&quot; http://stackoverflow.com/questions/1832041/how-to-programatically-detect-earpiece-in-iphone/1832449#1832449 Comment by Prakash on How to programatically detect earpiece in iphone? Prakash 2009-12-04T09:17:50Z 2009-12-04T09:17:50Z You should register for listener function AFTER your call to initializing AudioSession.. Do you do that way? http://stackoverflow.com/questions/1819512/question-regarding-the-accebility-of-object-of-uitextfield Comment by Prakash on question regarding the accebility of object of UITextfield Prakash 2009-11-30T12:43:51Z 2009-11-30T12:43:51Z you have asked 48 questions.. IS that right?? http://stackoverflow.com/questions/1807415/sending-xml-file-from-iphone-to-a-server-using-post-method/1807457#1807457 Comment by Prakash on sending XML file from IPhone to a server using Post Method Prakash 2009-11-27T12:20:10Z 2009-11-27T12:20:10Z ok..crude idea.. how abt having %3D instead of '=' ?? http://stackoverflow.com/questions/1804419/multiple-annotations-on-a-map-in-objective-c-for-iphone-application Comment by Prakash on Multiple annotations on a map in objective C for Iphone application Prakash 2009-11-26T20:30:10Z 2009-11-26T20:30:10Z i admire your consistency in ignoring every comments(ofcourse, including this one) about giving a damn about accepting/rating the answers! http://stackoverflow.com/questions/1803510/cfxmltreeref-for-iphone Comment by Prakash on CFXMLTreeRef for iPhone. Prakash 2009-11-26T13:53:36Z 2009-11-26T13:53:36Z What problem you are trying to solve? perhaps stating that would give better chance of getting useful answer :) http://stackoverflow.com/questions/1796809/iphone-application-crashes-probably-from-multiple-views-use Comment by Prakash on iPhone Application Crashes (probably from multiple views use) Prakash 2009-11-25T13:34:02Z 2009-11-25T13:34:02Z care to share some code? http://stackoverflow.com/questions/1795407/programmatically-pressing-a-uitabbar-button-in-xcode/1795460#1795460 Comment by Prakash on Programmatically pressing a UITabBar button in Xcode Prakash 2009-11-25T08:34:16Z 2009-11-25T08:34:16Z To me, setting by calling Tabbarcontroller method seems proper! But will check it doesn't matter! http://stackoverflow.com/questions/1791162/instrument-finds-leaks-on-simulator-but-not-on-the-device Comment by Prakash on Instrument finds leaks on Simulator, but not on the Device Prakash 2009-11-24T16:28:44Z 2009-11-24T16:28:44Z The leaks that are found on Simulator, Are they valid?? Have you already corrected? http://stackoverflow.com/questions/1789119/how-do-i-add-a-navigationviewcontroller-to-a-uiviewcontroller/1789516#1789516 Comment by Prakash on how do i add a navigationViewController to a UIViewController? Prakash 2009-11-24T11:50:04Z 2009-11-24T11:50:04Z Thanks Ben, your answer is complete! http://stackoverflow.com/questions/1783119/iphone-app-using-objective-c-and-cocoa-touch-how-do-i-create-native-contacts-li Comment by Prakash on iphone app. using objective c and cocoa touch ,how do i create native contacts like app. Prakash 2009-11-23T14:46:25Z 2009-11-23T14:46:25Z please correct the title of the question by making it specific. Ofcourse, the first part is true for majority of the questions with tag 'iPhone' http://stackoverflow.com/questions/1781883/read-data-from-the-table-view Comment by Prakash on read data from the table view Prakash 2009-11-23T09:43:56Z 2009-11-23T09:43:56Z 16 questions with 0% accept rate! You must be totally unsatisfied with StackOverflow ;) http://stackoverflow.com/questions/1754605/how-to-change-the-color-of-first-letter-of-a-textfields-text/1754620#1754620 Comment by Prakash on How to change the color of first letter of a textfields text. Prakash 2009-11-18T10:18:16Z 2009-11-18T10:18:16Z Good points Kenny! Although, i would opt for subclassing :) http://stackoverflow.com/questions/1754833/iphone-application Comment by Prakash on iphone application Prakash 2009-11-18T09:56:12Z 2009-11-18T09:56:12Z Not enough clarity in the question. Add some description as to what your app does, where (in a table?) you display those images &amp; and how you do it atm, Do you actually face any problem now? or you just speculate it?