User Prakash - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T03:45:39Zhttp://stackoverflow.com/feeds/user/123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856192/create-uiimage-with-a-specific-color/1856523#18565230Answer by Prakash for Create UIImage with a specific colorPrakash2009-12-06T20:37:57Z2009-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#18432010Answer by Prakash for Can you change the cursor color in a UITextView?Prakash2009-12-03T21:54:47Z2009-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#18324491Answer by Prakash for How to programatically detect earpiece in iphone?Prakash2009-12-02T11:52:38Z2009-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, &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#18258801Answer by Prakash for UITextField text value returns garbagePrakash2009-12-01T12:24:10Z2009-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#18253271Answer by Prakash for How to realize the same effect like iPhone's homescreenPrakash2009-12-01T10:32:44Z2009-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#18074570Answer by Prakash for sending XML file from IPhone to a server using Post MethodPrakash2009-11-27T08:40:24Z2009-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#18051700Answer by Prakash for iPhone Development xcode : Putting user input (names) into text array Prakash2009-11-26T18:53:31Z2009-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#18037860Answer by Prakash for suporting .rm audio formats in iPhonePrakash2009-11-26T13:52:13Z2009-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#18037273Answer by Prakash for How to add 2 buttons into the uinavigationbar on the right side without IB?Prakash2009-11-26T13:41:03Z2009-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#18026660Answer by Prakash for internet problemPrakash2009-11-26T09:48:08Z2009-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#17954603Answer by Prakash for Programmatically pressing a UITabBar button in XcodePrakash2009-11-25T08:32:16Z2009-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#17969280Answer by Prakash for How to fill one UItableViewCell with odd and even entries from an NSMutableArray?Prakash2009-11-25T13:31:51Z2009-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#17961560Answer by Prakash for UIPicker didSelectRow Strange BehaviorPrakash2009-11-25T10:55:24Z2009-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#17895260Answer by Prakash for touch effect for Button in iphonePrakash2009-11-24T11:37:29Z2009-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#17841700Answer by Prakash for iPhone – Photoshop like effectsPrakash2009-11-23T16:12:05Z2009-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#17835770Answer by Prakash for iphone app. using objective c and cocoa touch ,how do i create native contacts like app.Prakash2009-11-23T14:47:58Z2009-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#17835570Answer by Prakash for Decrease TabbarItem Title Font SizePrakash2009-11-23T14:44:36Z2009-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#17804130Answer by Prakash for Crash At Splash Screen, iPhonePrakash2009-11-22T23:31:48Z2009-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#17716611Answer by Prakash for Displaying nearby businesses in mapkitPrakash2009-11-20T16:31:03Z2009-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#17715241Answer by Prakash for Are multiple UIView animation callbacks a bad idea (i.e. cause mem issues)?Prakash2009-11-20T16:11:12Z2009-11-20T16:11:12Z<p>Multiple animation shouldn't cause memory warnings..</p>
<p>I suggest you should run Instruments for Leaks, ObjectAlloc & 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#17561401Answer by Prakash for iPhone device test IssuePrakash2009-11-18T13:52:09Z2009-11-18T13:52:09Z<p>Did you say, you have added to project?</p>
<p>And, do you see them in <code>Project Settings -> Build -> Code Signing identity</code>?</p>
http://stackoverflow.com/questions/1755004/table-view-rotate-but-not-properly-shape-change/1755115#17551150Answer by Prakash for Table View rotate, but not properly (shape change)Prakash2009-11-18T10:39:21Z2009-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#17549680Answer by Prakash for iPhone ebook appPrakash2009-11-18T10:16:15Z2009-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#17549171Answer by Prakash for Ask about Tab Bar, viewDidLoadPrakash2009-11-18T10:09:10Z2009-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#17548682Answer by Prakash for Distinguish between click on AccessoryView and Cell Content and will Apple allow it?(iPhone)Prakash2009-11-18T09:59:19Z2009-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#17538690Answer by Prakash for Animate the enabling of a UIBarButtonItem?Prakash2009-11-18T05:36:35Z2009-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#17491950Answer by Prakash for How to check the URL of a WebView?Prakash2009-11-17T14:19:17Z2009-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#17481101Answer by Prakash for Solution for iPhone new file dialog keyboardPrakash2009-11-17T11:02:38Z2009-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#17480462Answer by Prakash for highlight the buttons, when the focus is on itPrakash2009-11-17T10:52:09Z2009-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-mobile2JVM choices on Windows Mobile..Prakash2008-09-10T21:05:06Z2009-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#1856523Comment by Prakash on Create UIImage with a specific colorPrakash2009-12-07T09:27:39Z2009-12-07T09:27:39Zok.. can you post your practical code?http://stackoverflow.com/questions/1845955/iphone-big-icons-standardComment by Prakash on iPhone big Icons standardPrakash2009-12-04T13:26:55Z2009-12-04T13:26:55ZWhat exactly are you asking? And where is this "Recommendations"http://stackoverflow.com/questions/1832041/how-to-programatically-detect-earpiece-in-iphone/1832449#1832449Comment by Prakash on How to programatically detect earpiece in iphone?Prakash2009-12-04T09:17:50Z2009-12-04T09:17:50ZYou 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-uitextfieldComment by Prakash on question regarding the accebility of object of UITextfieldPrakash2009-11-30T12:43:51Z2009-11-30T12:43:51Zyou have asked 48 questions.. IS that right??http://stackoverflow.com/questions/1807415/sending-xml-file-from-iphone-to-a-server-using-post-method/1807457#1807457Comment by Prakash on sending XML file from IPhone to a server using Post MethodPrakash2009-11-27T12:20:10Z2009-11-27T12:20:10Zok..crude idea.. how abt having %3D instead of '=' ??http://stackoverflow.com/questions/1804419/multiple-annotations-on-a-map-in-objective-c-for-iphone-applicationComment by Prakash on Multiple annotations on a map in objective C for Iphone application Prakash2009-11-26T20:30:10Z2009-11-26T20:30:10Zi 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-iphoneComment by Prakash on CFXMLTreeRef for iPhone. Prakash2009-11-26T13:53:36Z2009-11-26T13:53:36ZWhat 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-useComment by Prakash on iPhone Application Crashes (probably from multiple views use)Prakash2009-11-25T13:34:02Z2009-11-25T13:34:02Zcare to share some code?http://stackoverflow.com/questions/1795407/programmatically-pressing-a-uitabbar-button-in-xcode/1795460#1795460Comment by Prakash on Programmatically pressing a UITabBar button in XcodePrakash2009-11-25T08:34:16Z2009-11-25T08:34:16ZTo 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-deviceComment by Prakash on Instrument finds leaks on Simulator, but not on the DevicePrakash2009-11-24T16:28:44Z2009-11-24T16:28:44ZThe 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#1789516Comment by Prakash on how do i add a navigationViewController to a UIViewController?Prakash2009-11-24T11:50:04Z2009-11-24T11:50:04ZThanks Ben, your answer is complete!http://stackoverflow.com/questions/1783119/iphone-app-using-objective-c-and-cocoa-touch-how-do-i-create-native-contacts-liComment by Prakash on iphone app. using objective c and cocoa touch ,how do i create native contacts like app.Prakash2009-11-23T14:46:25Z2009-11-23T14:46:25Zplease 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-viewComment by Prakash on read data from the table viewPrakash2009-11-23T09:43:56Z2009-11-23T09:43:56Z16 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#1754620Comment by Prakash on How to change the color of first letter of a textfields text.Prakash2009-11-18T10:18:16Z2009-11-18T10:18:16ZGood points Kenny! Although, i would opt for subclassing :)http://stackoverflow.com/questions/1754833/iphone-applicationComment by Prakash on iphone applicationPrakash2009-11-18T09:56:12Z2009-11-18T09:56:12ZNot enough clarity in the question. Add some description as to what your app does, where (in a table?) you display those images & and how you do it atm,
Do you actually face any problem now? or you just speculate it?