active questions tagged iphone-sdk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T03:50:57Zhttp://stackoverflow.com/feeds/tag/iphone-sdkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1892195/an-iphone-picker-that-rotates-left-right0An iphone picker that rotates left-right?Nancy2009-12-12T03:40:50Z2009-12-12T03:40:50Z
<p>I've only seen it in a VERY few iPhone apps... but it looks like a picker that rotates left/right (instead of top/bottom).</p>
<p>They usually put it on 1 line of a tableView... to allow the user to quickly pick between a small number of choices (like 3-10).</p>
<p>How is that coded?</p>
http://stackoverflow.com/questions/459483/iphone-programming-send-a-text-message-access-contact-list2iPhone Programming: Send a text message? Access contact list?David McGraw2009-01-19T22:41:07Z2009-12-12T03:35:27Z
<p>I'm still new to the API and I wanted to ask:</p>
<ul>
<li>Can you send a text message programmatically?</li>
<li>Can you access the users contact list programmatically?</li>
</ul>
<p>I'm thinking <strong>no</strong>. I haven't seen anything about text messaging in the API, and I figure the sandboxing that the iPhone does keeps you away from the phones contact list.</p>
<p>Thanks everyone.</p>
http://stackoverflow.com/questions/1743610/programmatically-turn-on-bluetooth-in-the-iphone-sdk1Programmatically turn on bluetooth in the iphone sdk?johnathon2009-11-16T17:22:43Z2009-12-12T02:38:37Z
<p>I have seen a lot of questions about this but no one actually gives a real answer (frameworks to import, actual code etc). They only say with a private api and that will get your app rejected from the app store.</p>
<p>I am aware that use of a private api will get my app rejected by I was wondering how to do it for personal use. (iPhone SDK 3.1.2, iPod touch 2g)</p>
http://stackoverflow.com/questions/1888723/how-can-i-develop-an-iphone-application-in-perl0How can I develop an iPhone application in Perl?dan2009-12-11T15:17:02Z2009-12-12T01:35:00Z
<p>Could someone provide a good link to book about how to develop iPhone application with the Perl programming language?</p>
http://stackoverflow.com/questions/1891868/using-cloudmade-geocodermanager-with-iphone0Using Cloudmade GeocoderManager with iPhoneTheGeoff2009-12-12T01:17:55Z2009-12-12T01:17:55Z
<p>I'm trying to use Cloudmade's iPhone SDK to do some geocoding. I'm following along with their example but my app crashes when I start the search. I'm getting no error and no NSZombies.
I'm having a hard time digging up info on Cloubmade's site and even from Google. Does anybody have any experience with this?</p>
<pre><code> cmGeoCoder=[[GeocoderManager alloc] initWithApikey:@"validAPIKey" searchFor:nil];
cmGeoCoder.delegate=self;
[cmGeoCoder addSearchTask:searchString];
</code></pre>
<p>The applications is crashing on the "addSearchTask:" call. I put in a break point and the cmGeoCoder is a valid object and "searchString is a valid NSString. The class is implementing GeoCoderDelegate.</p>
<p>Any help would be very appreciated.</p>
<p>Thanks,
Geoff</p>
http://stackoverflow.com/questions/301162/is-there-a-way-to-get-the-carrier-information-of-an-iphone-user-programmatically1Is there a way to get the carrier information of an iPhone user programmatically?Kelvin2008-11-19T06:27:15Z2009-12-12T00:58:53Z
<p>Aside from using the region to infer which carrier the user is under.</p>
http://stackoverflow.com/questions/1891654/what-is-the-path-for-an-image-in-iphone-development1What is the path for an image in iphone developmentGeoffreyF672009-12-12T00:01:24Z2009-12-12T00:44:23Z
<p>I have this snippet of objective c code:</p>
<pre><code>UIImage *image = [ [UIImage alloc] initWithContentsOfFile:fileName];
</code></pre>
<p>fileName is set to "file1.jpg"</p>
<p>When I run the code, however, image is set to nil.</p>
<p>I know the file does exist I am guessing it has something to do with the path.</p>
<p>What path should I be using?</p>
http://stackoverflow.com/questions/660798/multiple-iphone-developer-accounts-on-one-mac4Multiple iPhone Developer Accounts on One Mac?Optimal Solutions2009-03-19T01:51:43Z2009-12-12T00:00:15Z
<p>I have searched but cant find this question anywhere. My wife and I are about to take on iPhone development and we've only got the funds to purchase one iMac 24" to do this. Anyone out there with iPhone development experience know if two different Apple developer accounts can be profiled on one development Mac? Not only via the developer program but also does the XCODE (I believe it is) IDE support it?</p>
<p>What we're hoping to be able to do is that I can log in with my profile and developer/debug, etc my iPhone application and her do the same under her own profile (not seeing mine and vice-versa). Time sharing wont be an issue as I work from home while she works away from home and we'll be able to figure out that part no problem.</p>
<p>Please understand that we're both completely new to the Mac, OS X as well as the iPhone development arena and so we have no idea if this is possible. If not our second option would be to purchase two Mac Mini's (keyboards and mice too) and figure out some KVM to each of our existing PC's monitors that we already have, and develop that way. We would rather not and just share one iMac between two developer accounts and IDE profiles.</p>
<p><strong>UPDATE:</strong> My wife and I invested in a 24" iMac from Best Buy utilizing a 12 month no-interest offer, which made it the choice over the 20" iMac. Its got plenty of RAM (4G out of 8G max) and HD space (640G) and we're getting used to the MAC OS X and will begin developing soon. We've created two OS X accounts, to keep settings and such separate. Either Windows moved closer to OS X or vice-versa as things on OS X seem quite intuitive and we were highly impressed at the whole un-box and setup time of about 8 minutes! So far, so good.</p>
http://stackoverflow.com/questions/1890406/how-can-i-read-from-the-documents-directory-in-the-iphone-at-run-time0how can i read from the documents directory in the iphone at run time?Augusto Cazares2009-12-11T19:39:01Z2009-12-11T22:07:51Z
<p>I'm implemanting in an iphone app a .plist file that contain some initial parameters that i'll use later in the app, i create a NSMutableArray myArray with a NSMutableDictionary with some keys then i create the file: </p>
<pre><code>NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
</code></pre>
<p>NSString * documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingString:@"Initial.plist"];
[myArray writeToFile:filePath atomically:YES];</p>
<p>i acccess the content of this file as:</p>
<pre><code>NSMutableArray *temp= [[NSMutableArray alloc]initWithContentsOfFile:filePath];
</code></pre>
<p>everthing works fine in the simulator but when i run a test in a device the content of temp always is null, i don't have any idea why i get a nil Array maybe i'm doing somthing wrong accessing the file.</p>
http://stackoverflow.com/questions/1376909/play-audio-and-video-at-a-same-time-in-iphone-application0Play audio and video at a same time in iPhone applicationHollowin2009-09-04T02:12:10Z2009-12-11T22:07:00Z
<p>Is it possible to play audio and video file at a same time? I want to play different audio file and video file at a same time and also want control for both, so is it possible?</p>
http://stackoverflow.com/questions/1890943/uisearchbar-with-controller-in-a-normal-uiview0UISearchBar with Controller in a normal UIView?unknown (google)2009-12-11T21:20:57Z2009-12-11T21:56:49Z
<p><strong>What I want:</strong></p>
<p>A UIView with a UISearchBar at the top. Starting to edit the searchBar dims the current view and shows search results from another [UITableView]Controller.</p>
<p><strong>What I've tried:</strong></p>
<p>In Interface Builder:</p>
<ul>
<li>add a "Search Bar and Search Display Controller" to the UIView.</li>
<li>add a placeholder object for my UITableViewController</li>
<li>add a UITableView object and set it as the view for the UITableViewController</li>
<li>set the delegate for the UISearchBar to the UITableViewController</li>
<li>set all the outlets on the UISearchDisplayController to the UITableViewController</li>
</ul>
<p>In Code:</p>
<ul>
<li>add the UISearchBarDelegate, UISearchDisplayDelegate protocols to the UITableViewController
I've uploaded a test project with the above: <a href="http://kellybanman.com/test/SearchTest.zip" rel="nofollow">here</a></li>
</ul>
<p><strong>What I'm getting:</strong></p>
<p>Tapping to edit the search field crashes the app. No error messages, and only the "viewDidLoad" method in the UITableViewController gets called.</p>
<p><strong>In Conclusion:</strong></p>
<p>How do I go about using an external controller for a UISearchBar that is in a UIView?</p>
http://stackoverflow.com/questions/1890968/edit-uitableviewcells-while-being-dragged-around0Edit UITableViewCells while being dragged aroundEd Marty2009-12-11T21:24:20Z2009-12-11T21:30:18Z
<p>I've got a custom <code>UITableViewCell</code> subview that has a button on it which has a background color representing a priority. The user is allowed to drag the cells around in the table, which changes the priority of the object represented by that row. I want to update the color of the button when they're done, so I've implemented this:</p>
<pre><code>- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
//update data source
theCell.button.backgroundColor = newColor;
}
</code></pre>
<p>This works insofar as the background color of the button changes as soon as I let up on the move control. However, once the cell animates into place, the background color changes back to its previous color. Other values on the cell are changed properly (if, for example, I change the text, it stays changed).</p>
<p>Any thoughts on what's wrong or a workaround?</p>
http://stackoverflow.com/questions/1890778/how-do-we-clear-out-contents-in-nsmutatabledata1How do we clear out contents in NSMutatableDataFrank2009-12-11T20:46:33Z2009-12-11T20:52:09Z
<p>how do were clear an NSMutatableData wihtout using release and then re-alloc/init again to be used again?
I was looking at resetBytesInRange to be set at zero but I am unsure of this. Anyone can help?</p>
http://stackoverflow.com/questions/1884107/s7graphview-example0s7graphview examplePaul Peelen2009-12-10T21:19:41Z2009-12-11T20:48:47Z
<p>Hi,</p>
<p>I am looking for an graph library for the iPhone which allowes me to set texts as values on the X-axis. After a quick look at <a href="http://code.google.com/p/core-plot/" rel="nofollow">core-plot</a>, it seems its uncapable to do so. I stumbled over <a href="http://code.google.com/p/s7graphview/" rel="nofollow">s7graphview</a> but can't seem to get it working. </p>
<p>Is there anyone who did got it working, and might be able to share it with me? Or any links to some examples?
It think my brain just shut off cause its late, but I am giving it a try ;)</p>
<p>Best regards,
Paul Peelen</p>
http://stackoverflow.com/questions/561284/uitextview-on-a-uialertview-multi-line-input0UITextView on a UIAlertView (multi-line input)Filipe Guerra2009-02-18T14:33:45Z2009-12-11T20:01:52Z
<p>Hi, i'm having a couple of problems when i try to alloc a <strong>UITextView</strong> on an AlertView.
Here is my code:</p>
<pre><code>UIAlertView* minhaCritica = [UIAlertView new];
minhaCritica.title = @"7Arte";
[minhaCritica addButtonWithTitle:@"Cancelar"];
[minhaCritica addButtonWithTitle:@"Enviar"];
minhaCritica.message = @"Escreve a tua crítica:\n\n\n\n";
minhaCritica.delegate = self;
[minhaCritica show];
CGRect frame = minhaCritica.frame;
frame.origin.y -= 100.0f;
minhaCritica.frame = frame;
criticaTxtView = [UITextView alloc];
[criticaTxtView setFont:[UIFont systemFontOfSize:16.0f]];
[criticaTxtView initWithFrame:CGRectMake(20.0, 80.0, 245.0, 40.0)];
[minhaCritica addSubview:criticaTxtView];
[criticaTxtView becomeFirstResponder];
</code></pre>
<p>my problem is when i start inputing text, the text view doesn't scroll as i type. It should scroll one line up, when the first 2 rows are full.</p>
<p>Can anyone help me with this?
Here's a video showing the problem: <a href="http://www.welove.com.pt/7arte.swf" rel="nofollow">http://www.welove.com.pt/7arte.swf</a></p>
<p>Also, i'm having trouble getting the text the user inputed into a fiel.
i worked with:
criticaText = [[alertView textField] text];
but now it doesn't work with the code above. </p>
http://stackoverflow.com/questions/376104/uitextfield-in-uialertview-on-iphone-how-to-make-it-responsive4UITextField in UIAlertView on iPhone - how to make it responsive?emi1faber2008-12-17T21:33:32Z2009-12-11T19:58:38Z
<p>I placed a UITextField into a UIAlertView and moved it up so the keyboard wouldn't cover it up with the following code:</p>
<pre><code>[dialog setDelegate:self];
[dialog setTitle:@"Enter Name"];
[dialog addButtonWithTitle:@"Cancel"];
[dialog addButtonWithTitle:@"OK"];
UITextField * nameField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 45.0, 245.0, 25.0)];
[nameField setBackgroundColor:[UIColor whiteColor]];
[dialog addSubview:nameField];
CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, 100.0);
[dialog setTransform: moveUp];
[dialog show];
</code></pre>
<p>I also have the following code to deal with the alert view:</p>
<pre><code>- (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex{
NSLog(@"%d", (int) buttonIndex);
if (buttonIndex == 1) { // OK pushed
NSLog([alert textField].text); // does not log anything
} else {
// Cancel pushed
}}
</code></pre>
<p>I also have a UIAlertViewExtended.h file that contains:</p>
<pre><code>@class UITextField, UILabel;
@interface UIAlertView(Extended)
-(UITextField *)textField;
@end
</code></pre>
<p>My question is how do I get the text the user entered and how do I dismiss the keyboard?</p>
<p>Thanks,
Ben</p>
http://stackoverflow.com/questions/1890357/automated-interface-testing-on-iphone1Automated Interface testing on iPhone4thSpace2009-12-11T19:30:52Z2009-12-11T19:30:52Z
<p>I like using the UI Recorder in Xcode for testing a UI in the simulator. However, that I know of, UI Recorder doesn't work on the device. Is there a similar tool for automating UI testing on the device?</p>
http://stackoverflow.com/questions/1884956/type-degrades-when-button-is-clicked0type degrades when button is clickedAlpinista2009-12-10T23:50:04Z2009-12-11T18:59:43Z
<p>I have a UITableViewCell with a custom UIButton and UILable in the contentView. The button is a checkbox and toggles between a checked and unchecked state, with different images for each state. If I click the button multiple times the characters in the UILable degrade visually, a little more with each click. Im using Helvetica-Bold in the label.</p>
<p>If I pop the view controller and then navigateo back into the table, all is fixed.</p>
<p>Ideas?</p>
<p>jk</p>
http://stackoverflow.com/questions/1888749/multi-line-uitableviewcell-using-uitableviewcellstylevalue2-style0Multi-line UITableViewCell using UITableViewCellStyleValue2 stylepetert2009-12-11T15:20:47Z2009-12-11T17:25:47Z
<p>I'm trying to figure out how to replicate the UITableViewCellStyleValue2 style so that the detail text can be multiple lines - as seen in the 'address' cells in the Contacts app. Like the Contacts app, some of the fields (like street name) are optional; so it would show say 3 lines instead of 4, if the street was not nil.</p>
<p>I'm I missing a trick, or do I have to create a custom cell in IB? How to ensure the text and detail text labels line-up with other UITableViewCellStyleValue2 cells?</p>
<p>Thanks for any tips.</p>
http://stackoverflow.com/questions/1889262/iphone-sdk-opening-links-in-a-uitextview-in-a-web-view1iPhone SDK - opening links in a UITextView in a web viewChris Newman2009-12-11T16:41:01Z2009-12-11T16:50:35Z
<p>I have specified dataDetectorTypes on a UITextView so that URLs open in Safari when touched.</p>
<p>Is it possible to intercept this behaviour so I load the URL in a UIWebView instead? Or would I have write my own URL detector code to re-route this?</p>
http://stackoverflow.com/questions/1868542/tilemap-may-not-respond-to-mapnamed0'TileMap' may not respond to '+mapNamed:'Shaun Inman2009-12-08T17:30:48Z2009-12-11T15:52:45Z
<p>Here's an odd one. I have a class named <code>TileMap</code> with the following interface:</p>
<pre><code>@interface TileMap : NSObject
{
int *data;
int tilesWide;
int tilesHigh;
NSString *imageName;
}
+ (id)mapNamed:(NSString *)filename;
- (id)initWithFile:(NSString *)filename;
@end
</code></pre>
<p>The implementation looks like this:</p>
<pre><code>@implementation TileMap
+ (id)mapNamed:(NSString *)filename
{
return [[self alloc] initWithFile:filename];
}
- (id)initWithFile:(NSString *)filename
{
if (self = [super init])
{
// ...
}
return self;
}
@end
</code></pre>
<p>But when I add a call to <code>[TileMap mapNamed:@"map.plist"];</code> to my application Xcode warns: </p>
<blockquote>
<p>'TileMap' may not respond to '+mapNamed:'</p>
</blockquote>
<p>The application compiles fine and calls to <code>NSLog</code> within <code>TileMap-initWithFile:</code> are logged. I noticed that Xcode's syntax coloring was off for this class and method so I tried renaming both the class and the method separately. The only combination that eliminated the warning and syntax coloring issues was to rename both the class and the method.</p>
<p>Am I colliding with some undocumented framework class or method? Find in Documentation doesn't reveal anything. Find in Project only reveals the call, interface definition and the implementation. I'm stumped (not that it takes much). Is there a way around this without munging my existing naming conventions?</p>
http://stackoverflow.com/questions/1888434/closed-beta-application-in-the-app-store1closed beta application in the app store?versatilemind2009-12-11T14:33:16Z2009-12-11T14:38:35Z
<p>Hi! </p>
<p>Is there a way to have something like a closed private beta in the app store? So a customer could see and try the product after I sent him the link. If the app get's approved by a customer I would change the status from private to available (or something like that). </p>
<p>Is this possible with apples app store? </p>
<p>Thank you. </p>
http://stackoverflow.com/questions/1887803/want-to-go-to-next-view-from-rightbarbutton-item0want to go to next view from rightbarbutton item.uttam2009-12-11T12:35:24Z2009-12-11T13:18:29Z
<p>I am using this code to get the three button on the right side of the navigationbar ,button are visible but next to this I want to go to the next view from this three button image, text ,vedio. </p>
<pre><code>NSArray *segmentTextContent = [NSArray arrayWithObjects:@"Image",@"Text",@"Video",nil];
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:segmentTextContent];
segmentedControl.frame = CGRectMake(13, 20, 150, kCustomButtonHeight);
segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar;
segmentedControl.momentary = YES;
defaultTintColor = [segmentedControl.tintColor retain]; // keep track of this for later
UIBarButtonItem *segmentBarItem = [[UIBarButtonItem alloc] initWithCustomView:segmentedControl];
self.navigationItem.rightBarButtonItem = segmentBarItem;
if(segmentedControl.selectedSegmentIndex=0)
{
[segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged];
}
else if(segmentedControl.selectedSegmentIndex==1)
{
[segmentedControl addTarget:self action:@selector(segmentAction1:) forControlEvents:UIControlEventValueChanged];
}
else if(segmentedControl.selectedSegmentIndex==2)
{
[segmentedControl addTarget:self action:@selector(segmentAction2:) forControlEvents:UIControlEventValueChanged];
}
[segmentBarItem release];
//[modalBarButtonItem release];
}
return self;
}
</code></pre>
http://stackoverflow.com/questions/1885964/cgrectintersectsrect-fails-when-the-imageview-is-rotating0CGRectIntersectsRect fails when the imageView is rotating.Amaresh2009-12-11T05:26:09Z2009-12-11T13:14:45Z
<p>Hi all,</p>
<p>In my current project, i am moving a car in all directions. It is rotated also. During rotation the frame of the car changes and hence even if it doesnot collide with another imageview, it shows that the frames are colliding. That is because of change in the frame of the car imageView during rotation. So what can i do to find the exact collision of car with another imageView. </p>
<p>I got an information that pixel collisions can be calculated. But i dont know how it is ? Any suggestions please ????</p>
http://stackoverflow.com/questions/1887054/how-to-invert-transform-a-uiview0how to invert transform a UIView?Madhup2009-12-11T10:08:45Z2009-12-11T12:41:50Z
<p>Hi all,</p>
<p>I am using core-plot library to draw a bar-chart on my iPhone application and the problem arises when I try to add a label or some other views to the graph, </p>
<p>Actually the view I added is drawn vertically invert <a href="http://www.freeimagehosting.net/image.php?f36691f297.png" rel="nofollow">like this ........</a></p>
<p>The code is like</p>
<pre><code>UILabel *lbl= [[UILabel alloc] initWithFrame:CGRectMake(250, 90, 70, 25)];
[lbl setBackgroundColor:[UIColor redColor]];
[lbl setText:@"HELLO"];
[self.view addSubview:lbl];
[lbl release];
</code></pre>
<p>I am not daring to play with core-plot library. </p>
<p>So is there any other way to do the things right? should I do a transform before adding the views?</p>
<p>If this is the solution then this will be costly because I have to add more than one subview.</p>
<p>Hoping my question is clear to everybody.</p>
http://stackoverflow.com/questions/1859112/crash-when-scrolling-a-uipickerview-set-up-with-ib0Crash when scrolling a UIPickerView set up with IBJuBu13242009-12-07T10:23:26Z2009-12-11T08:56:48Z
<p>This is my first time using IB, but after spending a one or two intimate days with it I believe I'm beginning to understand it. That's just my way of saying I might be overlooking something simple here:</p>
<p>I've set up a UIPickerView and joined it to its DataSource and Delegate object in IB (both different Classes in my case). This allows the picker to show up when I run the app, which is very encouraging when it hasn't been showing up in any previous test runs. ;) However, when I scroll the UIPickerView, the program crashes, and I can't find any of my code referenced in the backtrace. After quite a bit of troubleshooting, I think I've narrowed down the crash to two distinct cases, as far as the backtrace is concerned:</p>
<p><strong>the return value of -pickerView:numberOfRowsInComponent: > the number of rows displayed</strong></p>
<ul>
<li>The app crashes as soon as a motion is begun to select a new row</li>
<li>The app crashes if I try to use -selectRow:inComponent:animated:</li>
</ul>
<p>backtrace (ignoring main):</p>
<pre><code>#0 0x955e8688 in objc_msgSend ()
#1 0x0167bea8 in -[UIPickerView table:cellForRow:column:reusing:] ()
#2 0x016773c1 in -[UIPickerView table:cellForRow:column:] ()
#3 0x017fef53 in -[UITable createPreparedCellForRow:column:] ()
#4 0x018077c8 in -[UITable _updateVisibleCellsNow] ()
#5 0x018027cf in -[UITable layoutSubviews] ()
#6 0x03ac42b0 in -[CALayer layoutSublayers] ()
#7 0x03ac406f in CALayerLayoutIfNeeded ()
#8 0x03ac38c6 in CA::Context::commit_transaction ()
#9 0x03ac353a in CA::Transaction::commit ()
#10 0x03acb838 in CA::Transaction::observer_callback ()
#11 0x007b8252 in __CFRunLoopDoObservers ()
#12 0x007b765f in CFRunLoopRunSpecific ()
#13 0x007b6c48 in CFRunLoopRunInMode ()
#14 0x000147ad in GSEventRunModal ()
#15 0x00014872 in GSEventRun ()
#16 0x0168a003 in UIApplicationMain ()
</code></pre>
<p><strong>the return value of -pickerView:numberOfRowsInComponent: < the number of rows displayed</strong></p>
<ul>
<li>The app crashes after the motion ceases and the row is selected</li>
<li>The app does <em>not</em> crash if I try to use -selectRow:inComponent:animated:</li>
</ul>
<p>backtrace (ignoring main):</p>
<pre><code>#0 0x955e8688 in objc_msgSend ()
#1 0x0167700d in -[UIPickerView _sendSelectionChangedForComponent:] ()
#2 0x017f4187 in -[UIScroller _scrollAnimationEnded] ()
#3 0x016f732c in -[UIAnimator stopAnimation:] ()
#4 0x016f7154 in -[UIAnimator(Static) _advance:] ()
#5 0x00017739 in HeartbeatTimerCallback ()
#6 0x007b7ac0 in CFRunLoopRunSpecific ()
#7 0x007b6c48 in CFRunLoopRunInMode ()
#8 0x000147ad in GSEventRunModal ()
#9 0x00014872 in GSEventRun ()
#10 0x0168a003 in UIApplicationMain ()
</code></pre>
<p>My delegate and datasource implementations follow:</p>
<pre><code>- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
return (NSInteger)3;
}
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
return (NSInteger)4;
}
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {
//it will probably be better to use the method following when creating the rows, so I can better customize it
return @"strings";
}
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
NSLog(@"selected a row");
}
</code></pre>
http://stackoverflow.com/questions/1886186/how-to-add-the-more-than-one-button-on-the-right-side-of-the-navigation-bar-in-ob0How to add the more than one button on the right side of the navigation bar in objective.c.uttam2009-12-11T06:27:45Z2009-12-11T08:26:03Z
<p>I have added the one button on right side of the navigation bar with this code, but i want to add the three buttton like this but i am adding with this code, I think button is overlap on one place , i am able to see only one button on right side of navigation bar.</p>
<pre><code> UIButton* modalViewButton1 = [UIButton buttonWithType:UIButtonTypeInfoLight];
[modalViewButton1 addTarget:self action:@selector(modalViewAction1:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *modalBarButtonItem1 = [[UIBarButtonItem alloc]
initWithCustomView:modalViewButton1];
self.navigationItem.rightBarButtonItem = modalBarButtonItem1;
[modalBarButtonItem1 release];
</code></pre>
http://stackoverflow.com/questions/1882117/how-to-create-a-demo-like-convertbot1How to create a demo like Convertbot4thSpace2009-12-10T16:15:43Z2009-12-11T07:05:07Z
<p>Convertbot (<a href="http://bit.ly/4EAUwY" rel="nofollow">http://bit.ly/4EAUwY</a>) has an embedded demo that is accessed through their info button in the app. However, it doesn't seem to use the Mediaplayer framework. They've also managed to get the demo very small, since the total app size is only 1.8MB. Any ideas how a demo like that can be created?</p>
http://stackoverflow.com/questions/1885978/chopping-deadspace-out-of-uiviewanimationtransitioncurlup0chopping deadspace out of UIViewAnimationTransitionCurlUp?eerok5122009-12-11T05:30:02Z2009-12-11T05:30:02Z
<p>I'd like to utilize UIViewAnimationTransitionCurlUp more often in my applications however it has a very annoying trait... namely that the first 20% to 35% of it is non-action... I know this is the case because I set an animation duration to 20 seconds to confirm my suspicions that the culprit wasn't simply setup time internal to [UIView], but rather the animation itself... and sure enough the first 6 seconds or so were consumed by the phone doing nothing at all.</p>
<p>The reason this is a problem is that I would like to highlight the leet look of the page curling up by setting the duration to say 4 or 5 seconds instead of having it fly by too rapidly for decent recognition when the duration is set to 1 second... however if I use 5 seconds it has probably 1.5 to 2 seconds of deadspace where nothing happens.</p>
<p>but the problem isn't merely that... suppose that the curl is triggered when the user presses a button... the fact that the curl immediately overrides any screen rendering prevents the button's coloured highlight state from displaying... the resulting 2 seconds of frozen screenstate make the user liable to press the button again thinking his first press wasn't intercepted, an action which can sometimes end up getting queued for after the curl is done, and then end up being executed on whatever action page I have underneath the curled page! which is like a user flying blind... which is a bit dysfunctional hehe</p>
<p>so yeah I dunno how to solve this... I have heard it is possible to compose ones own animations by delving into the CA library, something I will certainly be doing at some point just due to a lifelong interest in rolling my own animations... but at the moment where free time is very short I'm wondering of other possible solutions... if there aren't any I will just settle for a median duration of 1.500 seconds and force myself to be happy with that :)</p>
<p>it just occurred to me to look into the SDK for some sort of [UIView SetAnimationStartPoint] type function... I hope such a function exists... if not I can only rely on advice from y'all to save me :p</p>
<p>any help will be appreciated!</p>
http://stackoverflow.com/questions/1884705/iphone-animation-problem-simulator-vs-real-device0iPhone animation problem SImulator vs Real DeviceLukasz2009-12-10T23:00:38Z2009-12-11T04:22:17Z
<p>Hi!
This is my first question her so please be gentle:
I have followig animation code running smoothly on the simulator as well as on the real device (I am testng on iPhone 3GS 3.1.2).
Animation is a simple transition between the 2 views, something like book page flipping.</p>
<p>One diffrence betwen simulator an real device (The problem I cannot investigate - solve) is that on real device when animation finishes - after rotation has been done animated view blink (show for a split of second) for a moment before it goes hidden. On the simulator this 'unexpected' blink does not happen.</p>
<p>Here is the animation code:</p>
<pre><code>-(void)flip{
UIView *animatedView;
// create an animation to hold the page turning
CABasicAnimation *transformAnimation = [CABasicAnimation animationWithKeyPath:@"transform"];
transformAnimation.removedOnCompletion = NO;
transformAnimation.delegate = self;
transformAnimation.duration = ANIMATION_TIME;
transformAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
// this is the basic rotation by 90 degree along the y-axis
CATransform3D endTransform = CATransform3DMakeRotation(3.141f/2.0f,
0.0f,
-1.0f,
0.0f);
// these values control the 3D projection outlook
endTransform.m34 = 0.001f;
endTransform.m14 = -0.0015f;
// start the animation from the current state
transformAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
transformAnimation.toValue = [NSValue valueWithCATransform3D:endTransform];
animatedView = screenShot;
// Create an animation group to hold the rotation and possibly more complex animation in the future
CAAnimationGroup *theGroup = [CAAnimationGroup animation];
// Set self as the delegate to receive notification when the animation finishes
theGroup.delegate = self;
theGroup.duration = ANIMATION_TIME;
// CAAnimation-objects support arbitrary Key-Value pairs, we add the UIView tag
// to identify the animation later when it finishes
[theGroup setValue:[NSNumber numberWithInt:animatedView.tag] forKey:@"animated"];
// Here you could add other animations to the array
theGroup.animations = [NSArray arrayWithObjects:transformAnimation,nil];
theGroup.removedOnCompletion = NO;
// Add the animation group to the layer
if (animatedView.layer.anchorPoint.x != 0.0f)
{
animatedView.layer.anchorPoint = CGPointMake(0.0f, 0.5f);
float yy = animatedView.center.x - (animatedView.bounds.size.width / 2.0f);
animatedView.center = CGPointMake(yy, animatedView.center.y);
}
if(![animatedView isDescendantOfView:self.view])[self.view addSubview:animatedView];
screenShot.hidden = NO;
animatedView.hidden = NO;
[animatedView.layer addAnimation:theGroup forKey:@"flip"];
}
- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag {
screenShot.hidden = YES;
}
</code></pre>