active questions tagged iphone - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T12:03:18Zhttp://stackoverflow.com/feeds/tag/iphonehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795412/whats-the-fastest-way-to-save-data-and-read-it-next-time-in-a-iphone-app2What's the fastest way to save data and read it next time in a IPhone App ?sshadoww2009-11-25T08:18:22Z2009-11-25T12:01:15Z
<p>I have the following problem:
In my dictionary IPhone app I need to save an array of strings which actually contains about <b>125.000</b> distinct words; this transforms in aprox. <b>3.2Mb</b> of data.
The first time I run the app I get this data from an SQLite db. As it takes ages for this query to run, I need to save the data somehow, to read it <b>faster</b> each time the app launches. 'Till now I've tried serializing the array and write it to a file, and afterword I've tested if writing directly to NSUserDefaults to see if there's any speed gain but there's none. In both ways it takes 'bout 7sec. on the device to load the data. It seems that not reading from the file (or NSUserDefaults) actually takes all that time, but the deserialization does:</p>
<pre><code> objectsForCharacters = [[NSKeyedUnarchiver unarchiveObjectWithData:data] retain];
</code></pre>
<p>Do you have any ideeas about how I could write this data structure somehow that I could read/put in memory it faster ?</p>
http://stackoverflow.com/questions/1196436/uitextfield-in-uitableviewcell-adding-new-cells0UITextField in UITableViewCell - adding new cellsColin2009-07-28T20:07:58Z2009-11-25T12:00:02Z
<p>I am trying to create a table view similar to the YouTube video uploader view in the Photo Gallery on the iPhone.</p>
<p>Here's the basic setup.</p>
<p>I have a custom UITableViewCell created that contains a UITextField. Displaying the cell in my table works great and I can edit the text with no problems. I created an event hook so I can view when the text has changed in the text field.</p>
<pre><code>[textField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged]
</code></pre>
<p>What I want to do is this. When the user first edits the text I want to insert a new cell into the table view below the current cell (newIndexPath is calculated prior to the proper position):</p>
<pre><code>[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationBottom];
[self.tableView endUpdates];
</code></pre>
<p>Problem is when I run the cell insert code the cell is created but the text field's text updated briefly, but then the keyboard is dismissed and the text field is set back to an empty string.</p>
<p>Any help would be awesome! I've been banging my head about this one all day.</p>
<pre><code>- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section
{
if (section == 0)
return 2;
else
return self.tags.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
...
cell = (SimpleTextFieldTableCell *)[tableView dequeueReusableCellWithIdentifier:tagCellIdentifier];
if (cell == nil)
{
cell = [[[NSBundle mainBundle] loadNibNamed:@"SimpleTextFieldTableCell" owner:nil options:nil] lastObject];
}
((SimpleTextFieldTableCell *)cell).textField.delegate = self;
((SimpleTextFieldTableCell *)cell).textField.tag = indexPath.row;
((SimpleTextFieldTableCell *)cell).textField.text = [self.tags objectAtIndex:indexPath.row];
[((SimpleTextFieldTableCell *)cell).textField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
- (void)textFieldDidChange:(id)sender
{
UITextField *textField = sender;
[self.tags replaceObjectAtIndex:textField.tag withObject:textField.text];
if (textField.text.length == 1)
{
[textField setNeedsDisplay];
[self addTagsCell];
}
}
- (void)addTagsCell
{
NSString *newTag = @"";
[self.tags addObject:newTag];
NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:self.tags.count - 1 inSection:1];
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationBottom];
[self.tableView endUpdates];
}
</code></pre>
http://stackoverflow.com/questions/1781287/how-to-get-to-appdelegate-from-viewcontrollers-value1how to get to appdelegate from viewcontrollers' value ?senthilmuthu2009-11-23T05:40:20Z2009-11-25T11:56:58Z
<p>hi,
i know how to access appdelegate's value inside Viewcontroller like</p>
<pre><code> YourDelegate *appDelegate = (YourDelegate *)[[UIApplication sharedApplication] delegate];
</code></pre>
<p>but i want simple method like this when i want to get value from viewcontroller to appdelegate(reverse order).....? any help...?</p>
<p>suppose if i have one method in appdelate. i want to get data value from view controller page,i want to use it in appdelegte.m file.......?</p>
http://stackoverflow.com/questions/1429335/iphone-programming-avaudioplayer-leaks-memory-on-play0iPhone programming: avaudioplayer leaks memory on playDavid2009-09-15T20:03:49Z2009-11-25T11:52:06Z
<p>I'm new to using avadioplayer and I seems to have a memory when ever I play a sound.
I cannot figure out what I am missing to get rid of it inside Instrument. could this be a false positive?</p>
<p>ViewController.h :</p>
<pre><code>@interface ISpectatorViewController : UIViewController <UIAccelerometerDelegate>{
AVAudioPlayer *massCheerSoundID;
}
@property(nonatomic,retain) AVAudioPlayer * massCheerSoundID;
</code></pre>
<p>// ViewController.m</p>
<pre><code>- (void)viewDidLoad {
NSString * filePath;
filePath = [[NSBundle mainBundle] pathForResource:@"massCheer" ofType:@"mp3"];
massCheerSoundID = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:filePath ]error:nil];
}
- (void) playSound
{
if(massCheerSoundID.playing == false)
{
massCheerSoundID.currentTime = 0.0;
//leak here
[massCheerSoundID play];
}
}
- (void)dealloc {
[super dealloc];
[massCheerSoundID release];
}
</code></pre>
<p>I found out what the problem is.</p>
<p>I for got to add the AVAudioPlayerDelegate on the interface since I've set the UIAccelerometerDelegate instead</p>
<pre><code>@interface iSpectatorViewController: UIViewController<AVAudioPlayerDelegate>
</code></pre>
<p>and set the </p>
<pre><code>massCheerSoundId.delegate = self
</code></pre>
http://stackoverflow.com/questions/1796438/how-to-get-correct-seconds-from-nsdatecomponents0how to get correct seconds from NSDateComponents?senthilmuthu2009-11-25T11:46:36Z2009-11-25T11:46:36Z
<p>hi,
i am getting second from NSDateComponents.but it returns long number,how can i get correct second..?for example 55 sec...(it is as 123232133 like that)</p>
<pre><code> NSCalendar *sCalendar = [NSCalendar currentCalendar];
unsigned int unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit |
NSDayCalendarUnit | NSMonthCalendarUnit;
NSDateComponents *Info = [sCalendar components:unitFlags
fromDate:date1 toDate:date2 options:0];
NSLog(@" %dsec ",[Info second]);
</code></pre>
<p>it prints like 2323324324....</p>
http://stackoverflow.com/questions/1796183/iphone-textfields-keyboard-how-to-disable-second-textfield-until-first-one-has0iPhone textfields/keyboard - how to disable second textfield until first one has been completedhappyhammer832009-11-25T11:00:19Z2009-11-25T11:43:42Z
<p>Hi,</p>
<p>I have a login screen with two textfields (username and password). When the user clicks on either textfield, the keyboard appears and everything is fine. However, if the user clicks on the other textfield before clicking Done (on the keyboard) for the first textfield, the text for the username isn't saved. The only way to save the original textfield text is by clicking back on it and selecting Done then.</p>
<p>I would like to disable the other textfield from displaying the keyboard while the first textfield's keyboard is still open, if that makes sense? I know there's ways to stop textfields from being editable but how can I tell when there is already a keyboard open? </p>
<p>Another solution may be to disable the keyboard whenever the user clicks anywhere outside of the textfield? How would I do this?</p>
<p>Here's my code:</p>
<p>textFieldEmail = [[UITextField alloc] initWithFrame:frame];</p>
<p>textFieldEmail.keyboardType = UIKeyboardTypeEmailAddress;</p>
<p>textFieldEmail.returnKeyType = UIReturnKeyDone;
textFieldEmail.tag = 0;
textFieldEmail.delegate = [[UIApplication sharedApplication] delegate];</p>
<p>textFieldPassword = [[UITextField alloc] initWithFrame:frame];</p>
<p>textFieldPassword.keyboardType = UIKeyboardTypeEmailAddress;</p>
<p>textFieldPassword.returnKeyType = UIReturnKeyDone;
textFieldPassword.tag = 1;
textFieldPassword.delegate = [[UIApplication sharedApplication] delegate];</p>
<ul>
<li><p>(BOOL) textFieldShouldReturn:(UITextField *)textField {</p>
<p>[textField resignFirstResponder];</p>
<p>return YES;</p></li>
</ul>
<p>}</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1796422/iphone-drill-down-menus-are-resetting-when-current-tab-is-touched0iPhone drill-down menus are resetting when current tab is touchedSteve M2009-11-25T11:43:36Z2009-11-25T11:43:36Z
<p>I'm building an iPhone app with a tab bar. The second and third tabs each contain an identical set of drill-down menus, implemented as a stack of (a subclass of) UITableViewControllers.</p>
<p>Almost everything works fine, except this: when I drill down through the menus on the second or third tab, and then touch the SAME tab again, that set of menus always returns to the top level. So, say I'm in the second tab and I drill down to any level, then touch the second tab again: bang, I'm back at the top level again.</p>
<p>If I drill down on the second tab, touch another tab, THEN touch the second tab again, the app (correctly) retains its position in the second tab.</p>
<p>As far as I can see, none of my code is firing when I touch the currently-displayed tab.</p>
<p>Maybe there's a setting in IB that I'm missing?</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1531637/iphone-memory-leaks-in-apples-code2iPhone Memory Leaks in Apple's CodeBrian2009-10-07T13:26:50Z2009-11-25T11:41:09Z
<p>I'm running leaks through Instruments on my iPhone app and I'm seeing a lot of leaks that don't appear to be coming from my code.</p>
<p>For example:</p>
<pre><code>NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
delegate:operation];
operation.urlConnection = connection;
[connection release];
</code></pre>
<p>Leaks is telling me that the first line is leaking 1008 bytes. That seems to be a pretty standard alloc init with a release. Other leaks that are mentioned are in UIKit and WebKit.</p>
<p>Is it possible that these leaks are in fact in Apple's frameworks, or is more likely my code and leaks isn't showing the information accurately?</p>
http://stackoverflow.com/questions/1796396/making-large-toolbars-like-the-ipod-app0Making large toolbars like the iPod appandybee2009-11-25T11:37:26Z2009-11-25T11:37:26Z
<p>I am trying to create a toolbar very similar to the <a href="http://img502.imageshack.us/img502/6052/toolbarwrong.png" rel="nofollow">toolbar featured in the iPhone app</a>.</p>
<p>Currently I've been experimenting with the <code>UIToolbar</code> class, but I'm not sure how (and if?) you can make the toolbar buttons centrally aligned and large like that in the iPod app.</p>
<p>Additionally, regardless of size, the gradient/reflection artwork never correctly respects the size and is stuck as if the object is the default smaller size.</p>
<p>If this cannot be done with a standard <code>UIToolbar</code>, I guess I need to create my own view. In this case, can the reflection/gradient be created programmatically or will it require some clever alpha tranparency Photoshopped artwork?</p>
http://stackoverflow.com/questions/1796390/how-to-convert-nsinteger-to-nsstring-datatype0how to convert NSInteger to NSString datatype?senthilmuthu2009-11-25T11:36:00Z2009-11-25T11:37:04Z
<p>Hi,
how to convert NSInteger to NSString datatype?</p>
<p>i tried..
month is NSInteger....</p>
<pre><code> NSString *inStr = [NSString stringWithFormat:@"%d", [month intValue]];
</code></pre>
<p>any help please?</p>
http://stackoverflow.com/questions/1796370/how-to-disable-selection-on-uitableviewcell0how to disable selection on UITableviewcell?senthilmuthu2009-11-25T11:31:01Z2009-11-25T11:35:59Z
<p>Hi,
i want to disable click on particular Cell.it means, <strong>i want not to show highlight color(selection indication) when we touch on particular cell?</strong> any help please?</p>
http://stackoverflow.com/questions/1796251/are-database-operations-thread-safe0Are Database operations thread safe?Madhup2009-11-25T11:13:09Z2009-11-25T11:21:39Z
<p>Hi,</p>
<p>I am using sqlite in my iPhone app. </p>
<p>I have some database operations, in which I have to insert into two tables different data(means there is no data-dependency). Can I perform these two operations in seperate thread. While the insert operation in each table are more than one. So I am doing this in a while loop also. </p>
http://stackoverflow.com/questions/1796104/how-do-i-round-numbers-with-nsnumberformatter0how do I round numbers with NSNumberFormatterunknown (google)2009-11-25T10:46:12Z2009-11-25T11:06:48Z
<p>I've got a calculation for example 57 / 30 so the solution will be 1,766666667..
How do i first of all get the 1,766666667 i only get 1 or 1.00 and then how do i round the solution (to be 2)?</p>
<p>thanks a lot!</p>
http://stackoverflow.com/questions/1795993/how-can-i-refresh-particular-uitabeviewcell-through-nstimer0how can i refresh Particular UITabeviewCell through NSTimer?senthilmuthu2009-11-25T10:24:08Z2009-11-25T11:00:18Z
<p>how can i refresh Particular UITabeviewCell through NSTimer? is it possible?
any help pls?</p>
http://stackoverflow.com/questions/535791/touchxml-unable-to-parse-yql-result-xml-on-a-iphone0TouchXML unable to parse YQL result XML on a iPhonePawan Sachdeva2009-02-11T07:37:33Z2009-11-25T11:00:04Z
<p>Problem 1:
Has anyone worked with TouchXML, I am facing problem parcing rssfeed that has characters like & or even &
The parser takes the url as input and doesn’t seem to parse the XML content. NSXMLParser has no such problem for the same feed URL.
Problem 2:
Another problem with NSXMLParse is when the foundCharacter() method finds “\n”
even the call like
if([currentElementValue isEqualToString:@"\n"])
return;</p>
<p>currentElementValue = [currentElementValue stringByReplacingOccurrencesOfString:@"\n" withString:@""];</p>
<p>both these lines doesn’t seem to eliminate the \n character.</p>
<p>Any help guys ?</p>
http://stackoverflow.com/questions/1795740/uipicker-didselectrow-strange-behavior0UIPicker didSelectRow Strange Behaviorwshamp2009-11-25T09:34:18Z2009-11-25T10:55:24Z
<p>I have a 3 component dependent picker and I had it working fine until I noticed a strange behavior. If I spin component 1 and then click down with mounse on Conmponent 2, then wait for Component 1 to stop spinning then let the mouse button up, all without moving the mouse or picker wheel at all... didSelectRow does not get called at all!!! Has anyone else seen this behavior and found a work around???</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1795928/objective-c-sorting-by-property0Objective C - Sorting by propertyteepusink2009-11-25T10:13:04Z2009-11-25T10:37:28Z
<p>Hi,</p>
<p>Is there anyway I can sort a NSMutableArray that contains UIImageView by the UIImageView's frame.origin.y value?</p>
<p>Trying to do the sort before adding the view to make sure the stacking order is correct.</p>
<p>Thank you,
Tee</p>
http://stackoverflow.com/questions/1795880/significance-of-z0significance of 'z'?CodeWriter2009-11-25T10:03:26Z2009-11-25T10:34:25Z
<p>hello,</p>
<p>i started out learning cocos2d and came across these lines of code:</p>
<pre><code>-(id)init {
self=[super init];
if(self!=nil) {
Sprite *bg = [Sprite spriteWithFile:@"menu.png"];
[bg setPosition:ccp(240,160)];
[self addChild:bg z:0];
[self addChild:[MenuLayer node] z:1];
}
return self;
</code></pre>
<p>}</p>
<p>I ran the same lines of code with the following modification:</p>
<pre><code>-(id)init {
self=[super init];
if(self!=nil) {
Sprite *bg = [Sprite spriteWithFile:@"menu.png"];
[bg setPosition:ccp(240,160)];
[self addChild:bg];
[self addChild:[MenuLayer node]];
}
return self;
</code></pre>
<p>}</p>
<p>Removing the 'z' parameter brought no change in the output, so what is its significance and what is it used for? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1795456/how-can-i-initialize-a-date-to-nsdate1How can I initialize a date to NSdate?senthilmuthu2009-11-25T08:30:40Z2009-11-25T10:16:22Z
<p>Hi,</p>
<p>I want to give, for example, <code>12/11/2005</code> in the format of <code>mm/dd/yyyy</code>. Can I initialize <code>12/11/2005</code> to <code>NSDate</code> directly? Any help?</p>
<p>it gives a warning and crashes when I declare it as</p>
<pre><code>NSDate *then = [NSDate dateWithNaturalLanguageString:02/11/2009 locale:nil];
</code></pre>
http://stackoverflow.com/questions/1795935/uiview-transition-problem0uiview Transition problemallen2009-11-25T10:13:56Z2009-11-25T10:13:56Z
<p>i have a UIview holding two other UIviews. that two subviews having 15 buttons and images. i have to translate the parent view. but the translation is not smooth in 3g phone. im using UIviewanimation and CGAffineTransformTranslate for translating the view. please help me for making it more smoother.</p>
http://stackoverflow.com/questions/1795762/iphone-dev-makes-pointer-from-integer-without-a-cast0[iphone DEV] makes pointer from integer without a castPixman2009-11-25T09:40:11Z2009-11-25T09:57:39Z
<p>Hello, i have a simply warning in my iphone dev code.</p>
<pre><code>NSUInteger *startIndex = 20;
</code></pre>
<p>This code work, but i have a warning :</p>
<p>warning: passing argument 1 of 'setStartIndex:' makes pointer from integer without a cast</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1795803/uiview-flip-from-top0uiview flip from topallen2009-11-25T09:49:03Z2009-11-25T09:49:03Z
<p>how to flip a uiview from top/bottom using uiviewanimation ?
Does anyone have any ideas how this can be accomplished?</p>
http://stackoverflow.com/questions/1795530/combining-flipsideview-and-navigationview0combining flipsideview and navigationview pramuk2009-11-25T08:53:47Z2009-11-25T09:18:24Z
<p>when i am trying to combine flipsideview and navigation view i am getting following error
"request for member 'delegate' is something not in a structure or union" on the line controller.delegate = self; </p>
http://stackoverflow.com/questions/1795654/bulk-update-occasional-insert-coredata-too-slow0Bulk update & occasional insert (coredata) - Too slowNerd2009-11-25T09:18:03Z2009-11-25T09:18:03Z
<p>Hi guys,</p>
<p>Could benefit from your wisdom here..</p>
<p>I'm using Coredata in my app, on first launch I download a data file and insert over 500 objects (each with 60 attributes) - fast, no problem.</p>
<p>Each subsequent launch I download an updated version of the file, from which I need to update all existing objects' attributes (except maybe 5 attributes) and create new ones for items which have been added to the downloaded file.</p>
<p>So, first launch I get 500 objects.. say a week later my file now contains 507 items..</p>
<p>I create two arrays, one for existing and one for downloaded. </p>
<pre><code> NSArray *peopleArrayDownloaded = [CoreDataHelper getObjectsFromContext:@"person" :@"person_id" :YES :managedObjectContextPeopleTemp];
NSArray *peopleArrayExisting = [CoreDataHelper getObjectsFromContext:@"person" :@"person_id" :YES :managedObjectContextPeople];
</code></pre>
<p>If the count of each array is equal then I just do this:</p>
<pre><code> NSUInteger index = 0;
if ([peopleArrayExisting count] == [peopleArrayDownloaded count]) {
NSLog(@"Number of people downloaded is same as the number of people existing");
for (person *existingPerson in peopleArrayExisting) {
person *tempPerson = [peopleArrayDownloaded objectAtIndex:index];
// NSLog(@"Updating id: %@ with id: %@",existingPerson.person_id,tempPerson.person_id);
// I have 60 attributes which I to update on each object, is there a quicker way other than overwriting existing?
index++;
}
} else {
NSLog(@"Number of people downloaded is different to number of players existing");
</code></pre>
<p>So now comes the slow part.</p>
<p>I end up using this (which is tooooo slow):</p>
<pre><code> NSLog(@"Need people added to the league");
for (person *tempPerson in peopeArrayDownloaded) {
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"person_id = %@",tempPerson.person_id];
// NSLog(@"Searching for existing person, person_id: %@",existingPerson.person_id);
NSArray *filteredArray = [peopleArrayExisting filteredArrayUsingPredicate:predicate];
if ([filteredArray count] == 0) {
NSLog(@"Couldn't find an existing person in the downloaded file. Adding..");
person *newPerson = [NSEntityDescription insertNewObjectForEntityForName:@"person" inManagedObjectContext:managedObjectContextPeople];
</code></pre>
<p>Is there a way to generate a new array of index items referring to the additional items in my downloaded file? </p>
<p>Incidentally, on my tableViews I'm using NSFetchedResultsController so updating attributes will call [cell setNeedsDisplay];
.. about 60 times per cell, not a good thing and it can crash the app. </p>
<p>Thanks for reading :)</p>
http://stackoverflow.com/questions/1776237/iphone-mkmapview-strange-crash0iPhone: MKMapView Strange crashPuic2009-11-21T18:07:11Z2009-11-25T09:17:06Z
<p>Hi everyone,</p>
<p>I'm having an issue with a MKMapView, hope someone can help me.</p>
<p>I have a view that embed a MKMapView and a navigationController. I push in my navigationController another viewController then another one again. Then if I go back to the MKMapView and touch the map, the application crash.
so MkmapView > View2 > View3 > View2 > MKMapView > touch on the map then crash.</p>
<p>I definitly don't understand why.
If I only push another view then come back, it works well. So:
MkmapView > View2 > MKMapView = OK </p>
<p>I Use the other views in the same way in another part of the application without any problem.
View1 > View2 > View3 > View2 > View1 = OK</p>
<p>I checked, no memory warning viewDidUnload or dealloc method are called.</p>
<p>The error is: *** -[NSURL length]: unrecognized selector sent to instance 0x4806930
This time it was an NSURL that crashed but it's almost all the time different: NSArray, NSDictionnary etc...</p>
<p>Here is the stack trace:</p>
<p>0 0x3266bdf4 in objc_exception_throw</p>
<p>1 0x32de2bfc in -[NSObject doesNotRecognizeSelector:]</p>
<p>2 0x32d67b18 in <strong><em>forwarding</em></strong></p>
<p>3 0x32d5e840 in <strong>forwarding_prep_0_</strong></p>
<p>4 0x32cec074 in -[MKOverlayView _annotationViewForSelectionAtPoint:avoidCurrent:]</p>
<p>5 0x32ce4b60 in -[MKOverlayView annotationViewForPoint:]</p>
<p>6 0x32cc7efc in -[MKMapView _firstTouchBegan:withEvent:]</p>
<p>7 0x32d17e28 in -[MKScrollView _firstTouchBegan:withEvent:]</p>
<p>8 0x32d17c98 in -[MKScrollView touchesBegan:withEvent:]</p>
<p>9 0x30c4a888 in -[UIWindow _sendTouchesForEvent:]</p>
<p>10 0x30c49f94 in -[UIWindow sendEvent:]</p>
<p>11 0x30c45790 in -[UIApplication sendEvent:]</p>
<p>12 0x30c45094 in _UIApplicationHandleEvent</p>
<p>13 0x31bba990 in PurpleEventCallback</p>
<p>14 0x32da452a in CFRunLoopRunSpecific</p>
<p>15 0x32da3c1e in CFRunLoopRunInMode</p>
<p>16 0x31bb9374 in GSEventRunModal</p>
<p>17 0x30bf3c30 in -[UIApplication _run]</p>
<p>18 0x30bf2230 in UIApplicationMain</p>
<p>19 0x000025f8 in main at main.m:14</p>
<p>Does anyone had same kind of issue ? Does someone could give me advices on how I could locate the bug or what I should check ?</p>
<p>Thanks for your time!</p>
http://stackoverflow.com/questions/1074006/is-it-possible-to-disable-floating-headers-in-uitableview-with-uitableviewstylepl1Is it possible to disable floating headers in UITableView with UITableViewStylePlain?Tricky2009-07-02T12:09:19Z2009-11-25T08:52:02Z
<p>Hi, I'm using a UITableView to layout content 'pages'. I'm using the headers of the table view to layout certain images etc. and I'd prefer it if they didn't float but stayed static as they do when the style is set to UITableViewStyleGrouped.</p>
<p>Other then using UITableViewStyleGrouped, is there a way to do this? I'd like to avoid using grouped as it adds a margin down all my cells and requires disabling of the background view for each of the cells. I'd like full control of my layout. Ideally they'd be a UITableViewStyleBareBones, but I didn't see that option in the docs...</p>
<p>Many thanks,</p>
http://stackoverflow.com/questions/1795433/how-to-archive-and-unarchive-images-in-iphone0How to archive and unarchive images in iphoneMuniraj2009-11-25T08:24:50Z2009-11-25T08:48:49Z
<p>I am coding an iphone application where images are transferred from one iphone to another using bluetooth.
can anyone tell me how to archive an image and send it to another iphone
Then unarchive the image back .
Archiving the image directly using NSKeyedarchiver doesnt work.
Can anyone post sample code</p>
http://stackoverflow.com/questions/1795329/iphone-mobile-application-development-1iPhone mobile application developmentunknown (google)2009-11-25T07:55:34Z2009-11-25T08:44:49Z
<p>hi,
Am new to iphone mobile application development.Is it possible to do iphone mobile application development in Windows XP and what are the softwares are needed and also details of how to do. Please help me.</p>
http://stackoverflow.com/questions/1795407/programmatically-pressing-a-uitabbar-button-in-xcode1Programmatically pressing a UITabBar button in Xcodemagic-bullet2009-11-25T08:15:51Z2009-11-25T08:36:50Z
<p>Sorry for the newbe question. I have a UITabBar in my main window view as well as an array of UINavigationControllers for each Tab. The structure is similar to the iPod app in that the main views can be seen by selecting TabBar items and then the user can drill down further with the NavigationController by pushing views to the stack.</p>
<p>What I would like to be able to do is to do the equivalent of pressing a TabBar button at the bottom from any of the subviews in code (i.e., change the selected property of the TabBar and display launch the first view controller for the tab).</p>
<p>Any help would be greatly appreciated.</p>
<p>Dave</p>
http://stackoverflow.com/questions/1768638/excbadinstruction-with-urlconnection-initwithrequest0EXC_BAD_INSTRUCTION with URLConnection initWithRequestChris2009-11-20T06:11:54Z2009-11-25T08:28:01Z
<p>I have a weird error that I cannot seem to find any documentation or posts for. When I try to connect to my web service (changed URL for privacy) using the standard textbook method, I receive EXC_BAD_INSTRUCTION or EXC_BAD_ACCESS on [NSURLConnection initWithRequest].</p>
<p>The weirdest thing is that on occasion I can step over the offending line without any exception, but 9 times out of 10 it causes this error. Any suggestions?</p>
<pre><code>- (void)viewDidLoad {
NSURL *url = [NSURL URLWithString:@"http://heres/where/my/webservice/url/is/"];
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:30.0];
// cancel any old connection
if(connection) {
[connection cancel];
[connection release];
}
// create new connection and begin loading data
connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if(connection) {
// if the connection was created correctly, release old data (if any), and alloc new
[data release];
data = [[NSMutableData data] retain];
}
[url release];
[request release];
}
</code></pre>
<p>Any help or suggestions or RTFMs will be much appreciated!</p>