active questions tagged cocoa-touch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T00:40:16Zhttp://stackoverflow.com/feeds/tag/cocoa-touchhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/604632/how-do-you-add-multi-line-text-to-a-uibutton2How do you add multi-line text to a UIButton?Owain Hunt2009-03-03T00:22:11Z2009-12-01T22:34:56Z
<p>I have the following code...</p>
<pre><code>UILabel *buttonLabel = [[UILabel alloc] initWithFrame:targetButton.bounds];
buttonLabel.text = @"Long text string";
[targetButton addSubview:buttonLabel];
[targetButton bringSubviewToFront:buttonLabel];
</code></pre>
<p>...the idea being that I can have multi-line text for the button, but the text is always obscured by the backgroundImage of the UIButton. A logging call to show the subviews of the button shows that the UILabel has been added, but the text itself cannot be seen. Is this a bug in UIButton or am I doing something wrong?</p>
http://stackoverflow.com/questions/1823044/touchtouchended-is-not-getting-called-after-touchesbegan-and-touchmoved0touchtouchEnded is not getting called after touchesBegan and touchMovedAlan Aherne2009-11-30T23:06:44Z2009-12-01T21:48:45Z
<p>Hi There,</p>
<p>I am having a strange effect with touches. Sometimes when I swipe the screen slowly the touchBegan and touchMoved get called but not the touchEnded, which kinda screws up my view movements. How is it possible that touchEnded doesn't get called? And my finger leaves the screen without running off the sides or anything like that !!
Any tips or suggestions to explain this behaviour? I really need the touchEnded to clean up my view.</p>
<p>Thank you for any advice.
Al</p>
http://stackoverflow.com/questions/1827693/opensource-library-to-make-opengl-es-guis-on-the-iphone5OpenSource library to make OpenGL ES GUIs on the iPhone?Mr.Gando2009-12-01T17:28:57Z2009-12-01T19:50:55Z
<p>I'm looking for some kind of OpenSource library that allows me to make OpenGL GUIs on the iPhone ( for example the game menu , and some in-game pieces of interface like a player inventory ).</p>
<p>Does anyone know if some sort of library/middleware exists for this ? </p>
<p>A very big commercial example of this ( not for the iPhone ) would be: <a href="http://www.scaleform.com/products/gfx" rel="nofollow">Scaleform</a></p>
http://stackoverflow.com/questions/1828363/is-there-a-function-that-triggers-uiimagepickercontroller-to-take-a-photo0Is there a function that triggers UIImagePickerController to take a photo?Andrew Johnson2009-12-01T19:36:09Z2009-12-01T19:42:29Z
<p>I would like to trigger the camera with a non-standard button.</p>
<p>What function do I call to trigger the camera?</p>
http://stackoverflow.com/questions/1828119/is-there-a-way-to-display-a-uibarbuttonitem-without-using-a-uitoolbar-or-even0Is there a way to display a UIBarButtonItem without using a UIToolBar... or evenAndrew Johnson2009-12-01T18:53:06Z2009-12-01T19:08:31Z
<p>Or even, is it posible to make the UIToolbar invisible?</p>
<p>How can I achieve the effect of showing a standard UIBarButtonItem, without showing a UIToolBar?</p>
http://stackoverflow.com/questions/1827813/add-a-button-to-the-camera-toolbar-on-the-iphone0Add a button to the Camera Toolbar on the iPhoneAndrew Johnson2009-12-01T17:55:48Z2009-12-01T18:18:41Z
<p>I am using a UIImagePickerController subclass to take photos in my app.</p>
<p>The toolbar for the camera has a cancel button and a photo button on it. I would also like to add another button on the right.</p>
<p>I have tried to add a UIBarButtonItem to the subclass's toolbar, but that doesn't work. I have also tried to make a UIToolbar that looks like the camera toolbar, so I can just overlay a toolbar with one button invisibly, but I can't seem to match the style of the camera toolbar.</p>
<p>Any ideas on how to add a button to the camera toolbar?</p>
http://stackoverflow.com/questions/1827444/how-to-i-style-a-uitoolbar-to-look-like-the-standard-iphone-camera-toolbar0How to I style a UIToolbar to look like the standard iPhone camera toolbar?Andrew Johnson2009-12-01T16:47:49Z2009-12-01T17:17:27Z
<p>The iPhone camera toolbar is gray and has a slight gradient. I believe I could achieve the same look by setting the tintColor and/or translucency of the toolbar.</p>
<p>Any idea how I could make my toolbar look exactly like the camera one?</p>
<p>This isn't quite right... too dark: </p>
<pre><code>UIToolbar *tb = [[UIToolbar alloc] initWithFrame:frame];
tb.tintColor = [UIColor grayColor];
</code></pre>
http://stackoverflow.com/questions/1827106/block-touch-propagation-to-other-view0Block touch propagation to other viewLuca2009-12-01T15:56:24Z2009-12-01T16:52:05Z
<p>Hy, I have a childe view that put it self over other brother views. The problem is that when i touch it the brother also reacts at the touch event. How can I disable touch propagation on the underlieng brother views?</p>
http://stackoverflow.com/questions/1827371/why-doesnt-delegate-datasource-show-in-ib0Why doesn't delegate/datasource show in IB?4thSpace2009-12-01T16:35:46Z2009-12-01T16:40:16Z
<p>I have a uiviewcontroller declared like this:</p>
<pre><code>@interface RootViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>
</code></pre>
<p>I've dragged a tableview onto the rootcontroller's view. When clicking the File's Owner, all I see is tableview. Where is the delegate and datasource, which need to be connected for the tableview to work?</p>
http://stackoverflow.com/questions/791760/iphone-url-request-add-value-to-http-header-field2iPhone URL Request: Add value to HTTP header fieldgrinich2009-04-26T22:53:02Z2009-12-01T16:39:34Z
<p>I'm trying to add a value to the header for a URL request. </p>
<p>Something like this works just fine:</p>
<pre><code>[urlRequest addValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
</code></pre>
<p>But this doesn't even show up in the header:</p>
<pre><code>NSString *authString = [[NSString alloc] initWithString:
[defaults objectForKey:@"auth"]];
[urlRequest addValue:authString forHTTPHeaderField:@"iphoneID"];
</code></pre>
<p>I'm completely stumped. The auth string is around 90 characters long. Is this a problem?</p>
<p><em>Edit:</em>
Here's the code I'm trying:</p>
<pre><code>NSString *authString = [[NSString alloc] initWithString:[defaults objectForKey:@"auth"]];
[urlRequest addValue:authString forHTTPHeaderField:@"iphoneid"];
[urlRequest addValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
</code></pre>
<p>I can see the Accept-Encoding header being sent through Wireshark, but iphoneid is nowhere to be found. It's just a string, 80-90 characters long.</p>
<p><em>Another Update:</em>
So it seems that the problem isn't the field "iphoneid" but rather the authString I'm trying to pass into it. Other strings that I just create with the @"something" work fine, but the auth string that I pull from NSUserDefaults doesn't appear.</p>
<p>Suggestions on how to debug this?</p>
http://stackoverflow.com/questions/1827186/objective-c-nsurl-urlwithstring-appears-to-fail-when-using-variable0Objective-C NSURL URLWithString appears to fail when using variableMark D.2009-12-01T16:09:54Z2009-12-01T16:27:36Z
<p>So this is my first posting on StackOverflow, so excuse me if my request is not well formed.</p>
<p>I am attempting to load a variable with type NSString into an NSURL with the following line:</p>
<pre><code>audioPlayer = [[AudioPlayer alloc] initPlayerWithURL:[NSURL URLWithString:aArchiveItem.streamURL] delegate:self];
</code></pre>
<p>And in AudioPlayer implementation I am using:</p>
<pre><code>-(id)initPlayerWithURL:(NSURL *)url delegate:(id<AudioPlayerDelegate>) aDelegate {
self = [super init];
delegate = aDelegate;
queue = [[AudioQueue alloc] initQueueWithDelegate:self];
fileStream = [[AudioFileStream alloc] initFileStreamWithDelegate:self];
[fileStream open];
request = [[AudioRequest alloc] initRequestWithURL:url delegate:self];
return self;
}
</code></pre>
<p>When I hardcode a URL string(e.g. URLWithString:@"http://www.example.com") the call to the audioPlayer work flawlessly, but when attempting to populate it with the value of aArchiveItem.streamURL it fails...</p>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1656476/new-to-core-data-for-iphone4New to Core Data for iphoneACBurk2009-11-01T05:27:51Z2009-12-01T15:20:18Z
<p>I am new to the iphone platform and am creating an app that retrievals a rss feed and displays it in a UITableView. I have gotten this working perfectly (or rather, the way I wanted). What I was thinking was I would store the current feed items on the phone so that it would initally load the old items it has stored while it got the new feed, then parse the new feed and add the new items and refresh the TableView. I was going to use Core Data to store it the old feed items because it would be a good way of learning Core Data and it would be an appropriate use of Core Data. However, I am having a difficult time learning how to use Core Data and connecting it with the Table/Array.</p>
<p>I have already googled and looked on stackoverflow for tutorials but have yet to find anything that explains it in a way I really understand. Any explanation of the overall steps that it takes to add Core Data to an existing app would be greatly appreciated. Full-blown detail are not necessary (but would also be useful). I'm just not very experienced with SQL or storing of data in such a manner and am having trouble wrapping my head around how the whole concept of Core Data works and how it connects to everything.</p>
<p>Also, any better method of doing what I'm trying to accomplish would also be appreciated.</p>
http://stackoverflow.com/questions/352676/how-can-i-connect-iphone-and-web-service-and-get-xml-data2How can I connect iPhone and web service and get XML data?vavdiya haresh2008-12-09T13:18:12Z2009-12-01T15:19:17Z
<p>Hi,</p>
<p>I know how to connect to web server using an iPhone but now I have to connect the iPhone to a web service. I don't know how to do it and there is no demo or class available online.</p>
<p>Does anyone have any ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/411436/what-happens-to-an-iphone-app-when-iphone-goes-into-stand-by-mode11What happens to an iPhone app when iPhone goes into stand-by mode?Alex2009-01-04T18:23:37Z2009-12-01T13:52:36Z
<p>My app uses NSTimer and it appears that NSTimer doesn't fire when the iPhone goes into the stand-by mode (either by pressing the hardware button or by the idle timer).</p>
<p>When I activate the iPhone again, my app is still in the foreground. What happens to third party apps when the iPhone is the stand-by mode?</p>
http://stackoverflow.com/questions/1826019/uitextview-has-no-events0UITextView has no eventsCraig Warren2009-12-01T12:53:20Z2009-12-01T13:02:09Z
<p>I am developing an iPhone application which requires a multiline text field (UITextView) to capture some text.</p>
<p>When the user touches inside the textView it becomes firstResponder and displays the keyboard. What I really need it to do is remove the keyboard when the user is finished. Normally with a text field the return/done button press would signal the end of typing and I would use the delegate to resign first responder. However with a multiline textview I want the user to be able to add a new line so that is not possible.</p>
<p>My next option would be to resign first responder if there is a touch up outside of the text view. The problem here is that there are no events declared on UITextView which I can see in interface builder.</p>
<p>How can I create a multiline text field in an iPhone app which will release first responder at a sensible time when the user is done with it?</p>
http://stackoverflow.com/questions/930075/uidevice-orientation1UIDevice OrientationJordan2009-05-30T16:43:06Z2009-12-01T06:49:55Z
<p>I have the following code in a method. When I run this in the simulator the debugger skips right over the code?? What am I missing?</p>
<pre><code>if (([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft) ||
([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeRight))
{
} else {
}
</code></pre>
http://stackoverflow.com/questions/1823506/is-it-wrong-to-use-int-in-cocoa-and-cocoatouch3Is it wrong to use int in Cocoa and CocoaTouch?Jordan Kay2009-12-01T01:33:47Z2009-12-01T04:48:29Z
<p>What is the advantage of using something like <code>NSInteger</code> instead of <code>int</code> in code? I see this in examples a lot, including Apple's official code samples.</p>
http://stackoverflow.com/questions/949806/is-there-a-way-to-detect-what-uiview-is-currently-visible1Is there a way to detect what UIView is currently visible?Kevin2009-06-04T10:45:26Z2009-12-01T02:14:00Z
<p>I have a class that communicates with a web service and is used throughout the app. What I am looking for is a way to display an Error message in a UIActionSheet on top of what ever view the user is in. Is there an easy way to do this? I would like to avoid call back methods in every view if at all possible.</p>
http://stackoverflow.com/questions/1823317/how-do-i-legally-get-the-current-first-responder-on-the-screen-on-an-iphone2How do I [legally] get the current first responder on the screen on an iPhone?Anthony D2009-12-01T00:31:14Z2009-12-01T01:17:38Z
<p>I submitted my app a little over a week ago and got the dreaded rejection email today. It reads as follows:</p>
<blockquote>
<p>Dear -----------,</p>
<p>Thank you for submitting --------- to the App Store. Unfortunately it cannot be added to the App Store because it is using a private API. Use of non-public APIs, which as outlined in the iPhone Developer Program License Agreement section 3.3.1 is prohibited:</p>
<p>"3.3.1 Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs."</p>
<p>The non-public API that is included in your application is firstResponder.</p>
<p>Regards,</p>
<p>iPhone Developer Program</p>
</blockquote>
<p>Now, the offending API call is actually a solution I found here on SO:</p>
<pre><code>UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
UIView *firstResponder = [keyWindow performSelector:@selector(firstResponder)];
</code></pre>
<p>So this is my question; How do I get the current first responder on the screen? I'm looking for a legal way that won't get my app rejected.</p>
<p>Thanks.</p>
<p>I figured this out based on the solution provided by Thomas below. Here is what the final code looks like:</p>
<pre><code>@implementation UIView (FindFirstResponder)
- (UIView *)findFirstResonder
{
if (self.isFirstResponder) {
return self;
}
for (UIView *subView in self.subviews) {
UIView *firstResponder = [subView findFirstResonder];
if (firstResponder != nil) {
return firstResponder;
}
}
return nil;
}
@end
</code></pre>
http://stackoverflow.com/questions/1819193/sending-data-to-php-scripts-in-the-background-from-cocoa0Sending data to PHP scripts in the background from CocoaKaji2009-11-30T11:13:28Z2009-12-01T00:31:31Z
<p>I have information I'm planning to sync between an iPhone application and a desktop application via a PHP script; is there a method of calling the script in the background to send data to the online database and then retrieve the data from the script?</p>
http://stackoverflow.com/questions/1734386/what-are-common-cocoa-pitfalls9What are common Cocoa pitfalls?Nikolai Ruhe2009-11-14T14:34:31Z2009-11-30T22:07:37Z
<p>Triggered by Mike Ash’s newest article <a href="http://www.mikeash.com/?page=pyblog/friday-qa-2009-11-13-dangerous-cocoa-calls.html" rel="nofollow">“Dangerous Cocoa Calls”</a> from his great Friday Q&A series, I want to know which are the things in Cocoa that made your code stumble. Mike has compiled a great list of evil API uses that are mostly about thread and exception safety. I’m sure that there are more hidden pitfalls that Cocoa programmers should be aware of.</p>
<p>To make it clear: I’m not looking for obvious programming errors, like not retaining an instance variable or sending unknown selectors to objects. I’m looking for recurring patterns that do not do what is expected. I want to find the parts of the Cocoa API where usage seems to be clear but has hidden traps.</p>
http://stackoverflow.com/questions/1821345/cocoa-touch-uipickerview-how-to-handle-doubletap0Cocoa-Touch: UIPickerView how to handle doubleTapPrody2009-11-30T17:57:15Z2009-11-30T19:24:11Z
<p>How can one handle a double-tap event on a <code>UIPickerView</code>?</p>
<p>I can't seem to find any apps that do this, or anyone mentioning a solution.</p>
<p>Has anyone ever done this? Is it doable without re-writing the picker?</p>
http://stackoverflow.com/questions/1820645/mapkit-latitude-and-longitude-to-screen-coordinates1Mapkit latitude and longitude to screen coordinatesSergey Zenchenko2009-11-30T15:52:56Z2009-11-30T18:49:49Z
<p>I have mapkit view, how i can convert latitude and longitude to screen coordinates?</p>
http://stackoverflow.com/questions/1818341/why-does-uiwebview-link-click-error-out0Why does UIWebView link click error out?4thSpace2009-11-30T07:36:32Z2009-11-30T16:28:51Z
<p>I have a UIWebView (webview) with one link in it. I have implemented UIWebViewDelegate for this class. When I click the link, the page loads but I get an error.</p>
<pre><code>- (void)viewDidLoad {
[super viewDidLoad];
webview.delegate = self;
NSString *html = @"<html> \n"
"<head> \n"
"</head><body> \n"
"<p><b><a href='http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer_Class/Reference/NSTimer.html'>click here</a></b></p> \n"
"</body> \n"
"</html>";
[webview loadHTMLString:html baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
NSLog(@"the error is: %@", error);
}
</code></pre>
<p>Error output is:</p>
<pre><code>the error is: Error Domain=WebKitErrorDomain Code=101 UserInfo=0x3814410 "Operation could not be completed. (WebKitErrorDomain error 101.)"
</code></pre>
<p>However, this link works fine: <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer%5FClass" rel="nofollow">http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer%5FClass</a></p>
<p>Any ideas on what the difference is?</p>
http://stackoverflow.com/questions/1383849/loop-an-uiscrollview1Loop an UIScrollViewIlya2009-09-05T17:35:06Z2009-11-30T16:24:28Z
<p>Hi,</p>
<p>I've got an UIScrollView and in it different images(about 30). I'd like to make it possible, when user reaches the last image to show the first one after it and so on. And I want to implement the same feature with the first image(to go to the last one).
I'd like to loop the images smoothly that user won't even notice that he is making another loop.</p>
<p>What is the best way to achieve this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/741185/easy-way-to-dismiss-keyboard3Easy way to dismiss keyboard?Seventoes2009-04-12T02:19:29Z2009-11-30T15:49:47Z
<p>I have quite a few controls scattered throughout many table cells in my table, and I was wondering if there's an easier way to dismiss the keyboard without having to loop through all my controls and resigning them all as the first responder. I guess the question is.. How would I get the current first responder to the keyboard?</p>
http://stackoverflow.com/questions/502482/uilabel-text-overlapping-on-update0UILabel text overlapping on update?John Brooks2009-02-02T07:57:29Z2009-11-30T14:52:14Z
<p>Hello,</p>
<p>In my app I change the value of a text label from an initial value of 0 and increment it on a touch event. Sometimes, but not all the time, the new value will be overlayed over the 0, which is not cool..</p>
<p>This is the relevant code:</p>
<pre><code>UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
UILabel *label = (UILabel *)[cell viewWithTag:1000];
label.text = qtyString;
</code></pre>
<p>I've tried removing the label from the view, then adding another with the new value, but it didn't affect the problem at all. When I scroll the cell (the labels are part of a table cell) out of the screen and back in, the labels display correctly. Oh, and I've also tried doing </p>
<pre><code>[tableView reloadData];
</code></pre>
<p>And it works better, but if I select a cell and then scroll while it is higlighted it poops out on that cell.</p>
<p>Please help :(</p>
http://stackoverflow.com/questions/1818069/transfer-photos-from-one-application-to-another0Transfer photos from one application to anotherMuniraj2009-11-30T06:02:48Z2009-11-30T14:17:09Z
<p>can anyone give me sample code to transfer photos from one iphone to another using bluetooth</p>
http://stackoverflow.com/questions/1816964/designing-the-iphone-interface-in-a-nib-or-in-code3Designing the iPhone interface in a nib or in code?Jacob Relkin2009-11-29T22:12:26Z2009-11-30T10:27:35Z
<p>I've been pondering over this question for a long time already.</p>
<p>On the one hand, Interface Builder offers a really easy way to design the interface and wire the elements up with objects in my code.</p>
<p>On the other hand, in larger projects, Interface Builder becomes a hassle to maintain.</p>
<p>Any suggestions would be greatly appreciated.</p>
http://stackoverflow.com/questions/1817043/increase-uitextfield-to-certain-length0Increase UITextField to Certain LengthPF12009-11-29T22:45:28Z2009-11-30T09:54:07Z
<p>Hi Everyone:</p>
<p>I have a UITextField that I would like to "automatically" adjust its bounds size in order to make space for the string added in the field. However, I would like it to max-out in terms of width at a certain amount. What is the best way that I can go about doing this?</p>
<p>Thanks for any help.</p>