active questions tagged objective-c - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:49:47Zhttp://stackoverflow.com/feeds/tag/objective-chttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1944041/advantage-and-disadvantages-of-defines-vs-constants0Advantage and disadvantages of #defines vs. constants?Matt2009-12-22T03:41:03Z2009-12-22T03:49:42Z
<p>Can someone point out the advantages and disadvantages of using #defines vs. constants? Most of my work is done in C and Objective-C.</p>
<p>Thanks!</p>
<p>Matt</p>
http://stackoverflow.com/questions/1943922/function-with-argument-to-a-nsinvocation-method0Function with argument to a NSInvocation methodludo2009-12-22T02:59:27Z2009-12-22T03:27:46Z
<p>Hi,</p>
<p>I have a controller view who is using this function:</p>
<pre><code>
[appDelegate getFichesVisuels:[[self.fiche idFiche] intValue] ];
self.fiche = (Fiche *)[appDelegate.fichesInfo objectAtIndex:0];
</code></pre>
<p>So in my ressourceManager, here is the function:</p>
<pre><code>
- (void)getFichesVisuels:(int)value {
fichesVisuels = [[NSMutableArray alloc] init];
sqlite3 *database;
if(sqlite3_open([self.databasePath UTF8String], &database) == SQLITE_OK) {
sqlite3_reset(getFichesVisuelsStatement);
sqlite3_bind_int(getFichesVisuelsStatement, 1, value);
while(sqlite3_step(getFichesVisuelsStatement) == SQLITE_ROW) {
NSString *aTitle = [NSString stringWithUTF8String:(char *)sqlite3_column_text(getFichesVisuelsStatement , 7)];
NSString *aLpath = [NSString stringWithUTF8String:(char *)sqlite3_column_text(getFichesVisuelsStatement , 8)];
Visuel *visuel = [[Visuel alloc] initWithName:aTitle lpath:aLpath];
[fichesVisuels addObject:visuel];
}
}
sqlite3_close(database);
}
</code></pre>
<p>The problem is that this function is not working (librairies routine called out of sequence) because I am already calling other function in the same way (I wanna be able to execute many query using arguments in the same times). I heard that using NSInvocation can be the solution to this problem, but I don't know how to turn my code using NSInvocation.
Someone can help me?</p>
<p>Best Regards,</p>
http://stackoverflow.com/questions/1943135/objective-c-sectioninfo-name-of-nsfetchedresultssectioninfo-needs-to-be-datefo0Objective-C: [sectionInfo name] of NSFetchedResultsSectionInfo needs to be dateFormattedDoron Katz2009-12-21T22:46:30Z2009-12-22T03:26:31Z
<p>Hi guys,</p>
<p>I have the following code:</p>
<pre><code> -(NSString *)tableView:(UITableView *)table titleForHeaderInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[fetchedResultsController sections] objectAtIndex:section];
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
NSString *sectionName = [sectionInfo name];
NSLog(@"sectionName %@", sectionName);
NSString *convDate = [dateFormatter stringFromDate: (NSDate *)sectionName];
NSLog(@"convDate %@", convDate);
return [NSString stringWithFormat:@"%@", [sectionInfo name]];
}
</code></pre>
<p>I am basically needing to convert the titleforheaderinsection which is a string date like "2009-12-04 00:00:00 +1100" to a nicer looking shorter string. So I have tried converting it using something like dateFormatter setDateStyle, but when i output the NSLog to console i get the following:</p>
<p>2009-12-22 09:42:10.156 app[94614:207] sectionName 2009-12-04 00:00:00 +1100
2009-12-22 09:42:10.157 app[94614:207] convDate (null</p>
<p>Obviously the convDate is not getting anything, but [sectionInfo name] should be a string. I have parsed it into its own NSString variable, so why cant i implement the dateFormatter on it?</p>
<p><hr></p>
<p>A bit more information: I parse the date amongst other things earlier on, with the code snippet being:</p>
<pre><code> if ([currentElement isEqualToString: @"date"]) {
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init] ;
[dateFormatter setDateFormat:@"eee, dd MMM yyyy"];
NSDate *convDate = [dateFormatter dateFromString:string];
if (self.isComment){
[currentComment setDate: convDate];
}else if (self.isPost)
NSLog(@"convDate is %@", convDate);
[currentPost setDate: convDate];
</code></pre>
<p>Now, when I debug this, essentially the raw string is "Sat, 27 Nov 2009 17:16:00 -800" but when i look at the convDate it comes out to be "2009-11-27 00:00:00 +1100". Not sure why, but in any case, thats what gets stored. I would have thought it would match the style i mentioned, so if i change the dateFormatter format to any other type, it would stuff up and convDate become nil.</p>
<p>Looking back at my postController: I have some snippets of interest:</p>
<pre><code>- (NSFetchedResultsController *)fetchedResultsController {
if (fetchedResultsController == nil) {
NSFetchRequest *fetchRequest = [[[NSFetchRequest alloc] init] autorelease];
[fetchRequest setEntity:[NSEntityDescription entityForName:@"Post" inManagedObjectContext: ApplicationController.sharedInstance.managedObjectContext]];
NSArray *sortDescriptors = nil;
NSString *sectionNameKeyPath = @"date";
NSPredicate *pred = [NSPredicate predicateWithFormat:[NSString stringWithFormat:@"(PostSite.name like '%@')", self.site.name]];
[fetchRequest setPredicate:pred];
sortDescriptors = [NSArray arrayWithObject:[[NSSortDescriptor alloc]
initWithKey:@"date" ascending:NO] ];
[fetchRequest setSortDescriptors:sortDescriptors];
fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:
ApplicationController.sharedInstance.managedObjectContext
sectionNameKeyPath:sectionNameKeyPath cacheName:@"PostCache"];
}
return fetchedResultsController;
</code></pre>
<p>} </p>
<p>I am hoping to sort by date, and up in my code, in titleForHeaderInSection, format my string date to look more presentable.</p>
<p>Thanks guys</p>
http://stackoverflow.com/questions/1942689/iphone-email-app-launch-url1iPhone Email app launch urlmorticae2009-12-21T21:19:20Z2009-12-22T00:08:37Z
<p>The url to launch email and start a new email on an iphone is "mailto://someone@somwhere.com". I just want to launch the email app, dropping the user at the main menu, or inbox.</p>
<p>"mailto:" starts composing a new blank email</p>
<p>I've tried "mail:", "email:" and a few others. Is there no way to just launch the email app?</p>
http://stackoverflow.com/questions/1943368/iphone-obj-c-what-is-kshowsegmentindex0[iPhone Obj-C] What is kShowSegmentIndex?Devoted2009-12-21T23:45:20Z2009-12-21T23:51:53Z
<p>-(IBAction)toggleShowHide: (id)sender {
UISegmentedControl *segmentControl = (UISegmentedControl *)sender;
NSInteger segment = segmentedControl.selectedSegmentIndex;</p>
<pre><code>if(segment==kShowSegmentIndex) [switchView setHidden:NO];
else [switchView setHidden:YES];
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1943327/iphone-obj-c-properties1iPhone Obj-C PropertiesDevoted2009-12-21T23:33:17Z2009-12-21T23:37:43Z
<p>Hi, I'm a beginner following a book for creating iPhone apps.</p>
<p>One of the steps was writing "UISwitch *whichSwitch = whichSwitch.isOn;" and I was just curious as to where "isOn" came from?</p>
<p>In the documentation:</p>
<pre><code>on
A Boolean value that determines the off/on state of the switch.
@property(nonatomic, getter=isOn) BOOL on
</code></pre>
<p>What does that "getter=isOn" part mean? My ultimate reason for asking this question is because I want to know what I should do when I come across a similar situation for different UI elements.</p>
<p>Oh yeah, is this like the thing where properties create a "setSomething" mutator and "something" accessor? Except that for booleans it is "isOn" and "on"?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1875218/core-data-not-saving-a-relationship-that-has-been-deleted0Core Data not saving a relationship that has been deletedJoe2009-12-09T16:50:34Z2009-12-21T23:12:20Z
<p>I have a "to->many" relationship in Core Data with no inverse relationship and the delete rule set to both "Nullify" and "No action" (by that I mean I've tried both with no avail)</p>
<p>Basically I have a MergedStation whose property subStations points to many Station objects: MergedStation.subStation -->> Station</p>
<p>When I call <code>[mergedStation addSubStationsObject:newStation];</code> (which is dynamically created) everything works great and a new station is added, everything is refreshed and saved correctly so that the next time I open the program, all is right.</p>
<p>However, when I call <code>[mergedStation removeSubStationsObject:stationToRemove];</code> (also dynamically created), everything deletes correctly only for the current program session. If I close the program and open it again, it's like I didn't change anything. I have the exact same methods called after both the add and remove methods:</p>
<pre><code>[self.managedObjectContext refreshObject:station mergeChanges:YES];
[self.managedObjectContext processPendingChanges];
[self.managedObjectContext saveAndPrintErrors];
</code></pre>
<p>I have also tried different combinations of that above code to get it to work. Any help is appreciated!</p>
<p>Joe</p>
http://stackoverflow.com/questions/1942832/how-to-debug-core-data-crash-on-fetch-request0How to debug Core Data crash on fetch requestniklassaers2009-12-21T21:48:25Z2009-12-21T23:12:17Z
<p>Hi guys,</p>
<p>the second time I execute </p>
<pre><code>[[MOC executeFetchRequest:request error:&error] lastObject];
</code></pre>
<p>after having said</p>
<pre><code>NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:[NSEntityDescription entityForName:@"Login" inManagedObjectContext:MOC]];
NSError *error = nil;
</code></pre>
<p>it crashes with a EXC_BAD_ACCESS. Included is the debug window, and it looks like the crash happens deep down in the Core Data stack. Any idea on how I should go about debugging this to find out what's going on?</p>
<p><img src="http://i46.tinypic.com/zmavph.jpg" alt="alt text"></p>
<p>(just in case, here's the link to the picture <a href="http://tinypic.com/r/zmavph/6" rel="nofollow">http://tinypic.com/r/zmavph/6</a> Click on the picture in the link and the debug window will get larger)</p>
<p>Cheers</p>
<p>Nik</p>
http://stackoverflow.com/questions/1943206/multiple-images-per-row-in-uitableviews-cell0Multiple images per row in UITableView's cellJustin Galzic2009-12-21T23:05:09Z2009-12-21T23:11:01Z
<p>Is there any sample code that would illustrate how to have multiple images within each row?</p>
<p>Typical apps show a thumbnail to the left side with text to the right. I'd like to do that plus an image to the right of the text.</p>
<p>How would I go about doing this?</p>
http://stackoverflow.com/questions/1942282/string-class-internals-caching-character-offset-to-byte-relationship-if-using-u1String class internals - caching character offset to byte relationship if using UTF-8martinr2009-12-21T20:03:41Z2009-12-21T23:10:01Z
<p>When writing a custom string class that stores <a href="http://en.wikipedia.org/wiki/UTF-8" rel="nofollow">UTF-8</a> internally (to save memory) rather than <a href="http://en.wikipedia.org/wiki/UTF-16/UCS-2" rel="nofollow">UTF-16</a> from scratch is it feasible to some extent cache the relationship between byte offset and character offset to increase performance when applications use the class with random access?</p>
<p>Does Perl do this kind of caching of character offset to byte offset relationship? How do Python strings work internally?</p>
<p>What about Objective-C and Java? Do they use UTF-8 internally?</p>
<p>EDIT</p>
<p>Found this reference to Perl 5 using UTF-8 internally:</p>
<p>"$flag = utf8::is_utf8(STRING)</p>
<p>(Since Perl 5.8.1) Test whether STRING is in UTF-8 internally. Functionally the same as Encode::is_utf8()."</p>
<p>On page</p>
<p><a href="http://perldoc.perl.org/utf8.html" rel="nofollow">http://perldoc.perl.org/utf8.html</a></p>
http://stackoverflow.com/questions/1943169/howto-use-uitextfields-drawtextinrect-method0Howto use UITextField's drawTextInRect: methodJWVD2009-12-21T22:55:11Z2009-12-21T23:02:03Z
<p>Hi,</p>
<p>I have a UITextField with a custom background, but now i want to change the text's position, so i have to use drawTextInRect:, but i can't figure out how to use it. The documentation says:</p>
<p><em>You should not call this method directly. If you want to customize the drawing behavior for the text, you can override this method to do your drawing.</em></p>
<p>But how to override a method?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1942605/push-notification-badge-auto-increment1Push-Notification Badge auto increment.natanavra2009-12-21T21:00:53Z2009-12-21T21:22:25Z
<p>I've been implementing the push service to my application, and I've been thinking about the application's badge. My app is a mail app (sorta) and I want to notify the user via push for new messages added to the inbox, I want the badge = number of new messages in the inbox.</p>
<p>I thought of doing it server sided (provider) checking for new messages and sending the number as the badge.</p>
<p>The question is:
Is there a way to auto-increment the application's badge, without having to calculate the badge value server sided and afterwards sending it as a part of the push payload to the APSN?</p>
<p>Maybe there's a way to send in JSON badge field some variable like "++" or something like that.
Any hack for that? Or do I need to go with the counting system server-sided??</p>
http://stackoverflow.com/questions/1930431/uidatepicker-graphical-glitch0UIDatePicker graphical glitchmorticae2009-12-18T20:12:56Z2009-12-21T21:07:41Z
<p>I'm experiencing a bad looking graphical glitch with UIDatePicker, and I'm wondering if anyone else has seen and/or resolved it. It is something non-deterministic, because every once in a while it goes away and looks normal.</p>
<p>Check out the highlight and shadow bars are shifted...</p>
<p><img src="http://img.skitch.com/20091218-x45e3i7bxw2ir4euymwxdrifhb.jpg" alt="alt text"></p>
<p>I have tried removing all other graphical elements. I have tried removing my slide-up animation so that it just appears in place (I thought there might be a break in animating the sub-views). At this point, I'm out of ideas for isolating this thing.</p>
<p>Thoughts? Thanks guys.</p>
http://stackoverflow.com/questions/1940159/keyboard-not-show-onload0Keyboard not show onloadunknown (google)2009-12-21T13:42:03Z2009-12-21T20:15:06Z
<p>Hello
I want the keyboad show automatically onload, but it did not work as i expect
here is the code i use:</p>
<pre><code>- (void)viewDidLoad {
[super viewDidLoad];
[seachBar2 setDelegate:self];
}
- (BOOL)Searchbar2ShouldReturn:(UISearchBar *)searchBar2 {
[searchBar2 becomeFirstResponder];
return YES;
}
</code></pre>
<p>Coud somebody will point me how to fix this
thank you somuch</p>
http://stackoverflow.com/questions/1941686/objective-c-int-value-changing-without-cause1Objective C - int value changing without causeJeremiah2009-12-21T18:11:48Z2009-12-21T18:55:46Z
<p>Objective C - Need help retaining the value of an int. It's changing on me without my command.</p>
<p>The original question was : "How do you declare and retain an int?", that was satisfied in another post here:</p>
<p>Now I have a problem where an int that was 18 is changing to 2, somehow on it's own.</p>
<p>Here's my code:</p>
<pre><code>@interface Game : Layer // this is from cocos2d
{
int maxSprites;
}
@implementation Game
-(void)initVariables
{
maxSprites = 18;
}
</code></pre>
<p>later on, when I print it out, like this:</p>
<pre><code> NSLog(@" maxSprites = %d ", maxSprites);
</code></pre>
<p>I get :</p>
<pre><code> maxSprites = 2
</code></pre>
<p>And operations that require it to be 18, crash or don't work, as if it's really just 2 now.</p>
<p>How would that be possible? =)</p>
<p>APPLE-SHIFT-F reveals no other usage of the maxSprites variable.</p>
<p>I've looked at other code examples and often they're exposing the variable with a getter+setter and they are also using @property. Am I missing something? I'm new to Objective-C, so I might as well just be !</p>
<p>I did a APPLE+SHIFT+F for maxSprites" In Project, Textual, Contains, Ignore Case and only resulted in:</p>
<pre><code> Game.h: int maxSprites;
Game.m: maxSprites = 18;
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
</code></pre>
<p>I found the location where it changes using a watchpoint. It changes here:</p>
<pre><code> Expression: “*(int *) 67379960”
New Value: 2
Old Value: 18
</code></pre>
<p>on this line:</p>
<pre><code> [self checkMatchBarAward:spriteTypeToAdd];
</code></pre>
<p>odd? that function doesn't do anything with maxSprites, nor does that line.</p>
<p>EDIT:
here is the function, I commented everything inside it out and it still occurs:
.h </p>
<pre><code> -(void)checkMatchBarAward:(int)spriteTypeToAdd;
</code></pre>
<p>.m </p>
<pre><code> -(void)checkMatchBarAward:(int)spriteTypeToAdd
{
}
</code></pre>
<p>EDIT:</p>
<p>thanks for the recommendations. I have cleaned all targets and it still changed values. because of the answers you guys gave, you lead me to the problem. thanks for all of your help.</p>
<p>I posted my results below in an answer. Here's a copy:</p>
<p>guys you wouldn't believe what was the cause. thank you for all your help because telling me to clean and look and check my types, that helped.</p>
<p>I looked over my arrays. I found one that was declared like this:</p>
<pre><code> int matchBarArray[8];
</code></pre>
<p>2 lines up from the breakpoint halt where it says that the value changed from 18 to 2, I have this line:</p>
<pre><code> matchBarArray[spritesCaptured-1] = spriteTypeToAdd;
</code></pre>
<p>and guess what, I overstepped the bounds of the array by 1. if I increase the size of the array to 9, I no longer get the int change from 18 to 2.</p>
<p>also, if I overstep the bounds by more than 1, i.e I reduce the array size to smaller, there are other things that start changing such as my score, booleans, the whole game ! =)</p>
<p>I can't believe hitting memory outside the array in Objective-C can cause such a riot =) AND IT'S SO HARD TO DEBUG!</p>
http://stackoverflow.com/questions/1941746/learning-opengl-es-for-iphone1Learning OpenGL ES for iPhonetechy2009-12-21T18:20:59Z2009-12-21T18:35:46Z
<p>I've been developing for the iPhone for maybe a year, and have made a few games completely based on objective-c, but now i have ideas for 3d games and I know I would need to learn OpenGL ES, so my question is: What are some good resources for 3D GAME programming on the iPhone.</p>
<p>Thanks</p>
<p>-Techy</p>
http://stackoverflow.com/questions/1941749/nsopenpanel-above-a-fullscreen-nswindow0NSOpenPanel above a fullscreen NSWindow ?Dave Carpeneto2009-12-21T18:21:30Z2009-12-21T18:21:30Z
<p>Hi - I open a window with the following:</p>
<pre><code>NSRect screenRect = [[NSScreen mainScreen] frame];
[super initWithContentRect:screenRect
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:NO];
int windowLevel = CGShieldingWindowLevel();
[self setLevel:windowLevel];
</code></pre>
<p>... so the window is fullscreen & above all other window levels (including modal windows). I later want to display an open panel, however the following opens the dialog <strong>below</strong> the window I created above (it seems that the runModal stuff overrides the requested window level I try to set):</p>
<pre><code> NSOpenPanel *OP = [NSOpenPanel openPanel];
int windowLevel = CGShieldingWindowLevel();
[OP setLevel:windowLevel];
int returnCode = [OP runModal];
</code></pre>
<p>... and the following opens a sheet on the window created above (good), however it also winds up showing the menu bar, which I had previously hidden (not what I want):</p>
<pre><code> NSOpenPanel *OP = [NSOpenPanel openPanel];
[OP beginSheetModalForWindow:[self window]
completionHandler:^(NSInteger returnCode) {
NSLog(@"completionHandler called with %d", returnCode);
}];
</code></pre>
<p>... so my questions are: </p>
<ul>
<li>Does anyone know how to open a modal window above the <code>CGShieldingWindowLevel</code> ?</li>
<li>Is there any way to get the menu bar to not show up on the sheet solution I'm trying above ?</li>
</ul>
<p>Thanks all :-)</p>
http://stackoverflow.com/questions/1938509/how-to-simulate-a-low-level-keypress-on-os-x3How to simulate a low level keypress on os x? Lou2009-12-21T06:23:35Z2009-12-21T18:15:57Z
<p>Howdy, </p>
<p>I am trying to generate keyboard keydown and keyup events programmatically. I am currently using CGPostKeyboardEvent to do this, but I am searching for a way to do this at a lower level. I have looked at DDHidLib but could not figure out a way to create a fake event. Can anyone help?</p>
<p><strong>update</strong>:
Thanks to weichsel's advice I am now creating a key down event with the following:</p>
<pre><code> CGEventRef e = CGEventCreateKeyboardEvent (NULL, (CGKeyCode)52, true);
CGEventPost(kCGSessionEventTap, e);
CFRelease(e);
</code></pre>
<p>which I found <a href="http://www.openframeworks.cc/forum/viewtopic.php?f=9&t=2267" rel="nofollow">here</a>.</p>
<p><strong>However</strong>, my problem still stands so I will elaborate a bit. The application (3rd party) that I would like to send keypresses to implements <a href="http://www.dribin.org/dave/blog/archives/2007/03/19/ddhidlib_10/" rel="nofollow">DDHidLib's</a> key capturing function: </p>
<pre><code>- (void) ddhidKeyboard: (DDHidKeyboard *) keyboard
keyDown: (unsigned) usageId;
</code></pre>
<p>And this never gets called using the current method. My guess is that the key down simulated with CGEventCreateKeyboardEvent is at too high of a level to be captured by ddhidKeyboard:keyDown. So what I am trying to do is create the keydown event at a sufficiently low level such that it will be recognized by ddhidKeyboard:keyDown. </p>
http://stackoverflow.com/questions/1938513/objective-c-how-do-you-declare-and-retain-an-int0Objective C - How do you declare and retain an int?Jeremiah2009-12-21T06:25:20Z2009-12-21T18:12:15Z
<p>Here's my code:</p>
<pre><code>@interface Game : Layer // this is from cocos2d
{
int maxSprites;
}
@implementation Game
-(void)initVariables
{
maxSprites = 18;
}
</code></pre>
<p>later on, when I print it out, like this:</p>
<pre><code> NSLog(@" maxSprites = %d ", maxSprites);
</code></pre>
<p>I get :</p>
<pre><code> maxSprites = 2
</code></pre>
<p>And operations that require it to be 18, crash or don't work, as if it's really just 2 now.</p>
<p>How would that be possible? =)</p>
<p>APPLE-SHIFT-F reveals no other usage of the maxSprites variable.</p>
<p>I've looked at other code examples and often they're exposing the variable with a getter+setter and they are also using @property. Am I missing something? I'm new to Objective-C, so I might as well just be !</p>
<p>EDIT:
hrmph, why'd I get a -1?</p>
<p>Thanks I will try to learn how to do a Watchpoint.</p>
<p>Until then, I would like to say that I did a APPLE+SHIFT+F for maxSprites" In Project, Textual, Contains, Ignore Case and only resulted in:</p>
<pre><code>Game.h: int maxSprites;
Game.m: maxSprites = 18;
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@" maxSprites = %d", maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
Game.m: NSLog(@"maxSprites is at %p", &maxSprites);
</code></pre>
<p>2nd EDIT:</p>
<p>I found the location where it changes using a watchpoint. It changes here:</p>
<p>Expression: “*(int *) 67379960”
New Value: 2
Old Value: 18</p>
<p>on this line:</p>
<pre><code>[self checkMatchBarAward:spriteTypeToAdd];
</code></pre>
<p>odd? that function doesn't do anything with maxSprites. </p>
<p>EDIT:
-I'm going to make a new question now to find out why the value is changing on it's own. Thank you for your help guys, great job.</p>
<p>new post will be taken up here:
<a href="http://stackoverflow.com/questions/1941686/objective-c-int-value-changing-without-cause">http://stackoverflow.com/questions/1941686/objective-c-int-value-changing-without-cause</a></p>
http://stackoverflow.com/questions/1939601/objective-c-passing-model-objects-to-a-worker-class-from-a-controller1Objective-C - Passing Model Objects to a Worker Class From a ControllerMark Struzinski2009-12-21T11:34:59Z2009-12-21T17:41:31Z
<p>I am a complete newbie working on my first iPhone project. I have been a .NET developer for 4 years to give you some background on where I am coming from. I am trying to follow the MVC pattern and do things the right way on my first project. I don't want to hack things together just to get them to work.</p>
<p>Here is my situation:
I am trying to parse an XML feed which will only contain 1 object. I have a model object which represents the object I will get from parsing the XML feed. I have subclassed NSXMLParser and am able to successfully parse the XML feed and get values back (using NSLog to check the values). Here is where my disconnect occurs. When moving from my controller to the subclass, what is the best way to call the XMLParser, populate the model object, and return it to the controller?</p>
<p>I am looking for some kind of pattern to follow which would be considered a best practice. I don't want to just throw all the logic into a method on the controller, making it unable to be reused in any situation.</p>
http://stackoverflow.com/questions/1940903/background-threads-consuming-100-cpu-on-iphone-3gs-causes-latent-main-thread0Background threads consuming 100% CPU on iPhone 3GS causes latent main threadJames Wald2009-12-21T15:56:05Z2009-12-21T17:39:43Z
<p>In my application I am executing 10 asynchronous NSURLConnections within an NSOperationQueue as NSInvocationOperations. In order to prevent each operation from returning before the connection has had a chance to finish I call CFRunLoopRun() as seen here:</p>
<pre><code>- (void)connectInBackground:(NSURLRequest*)URLRequest {
TTURLConnection* connection = [[TTURLConnection alloc] initWithRequest:URLRequest delegate:self];
// Prevent the thread from exiting while the asynchronous connection completes the work. Delegate methods will
// continue the run loop when the connection is finished.
CFRunLoopRun();
[connection release];
}
</code></pre>
<p>Once the connection finishes, the final connection delegate selector calls CFRunLoopStop(CFRunLoopGetCurrent()) to resume the execution in connectInBackground(), allowing it to return normally:</p>
<pre><code>- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
TTURLConnection* ttConnection = (TTURLConnection*)connection;
...
// Resume execution where CFRunLoopRun() was called.
CFRunLoopStop(CFRunLoopGetCurrent());
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
TTURLConnection* ttConnection = (TTURLConnection*)connection;
...
// Resume execution where CFRunLoopRun() was called.
CFRunLoopStop(CFRunLoopGetCurrent());
}
</code></pre>
<p>This works well and it is thread safe because I bundled each connection's response and data as instance variables in the TTURLConnection subclass.</p>
<p>NSOperationQueue claims that leaving its maximum number of concurrent operations as NSOperationQueueDefaultMaxConcurrentOperationCount allows it to adjust the number of operations dynamically, however, in this case it always decides that 1 is enough. Since that is not what I want, I have changed the maximum number to 10 and it seriously hauls now.</p>
<p>The problem with this is that these threads (with the help of SpringBoard and DTMobileIS) consume all of the available CPU time and cause the main thread to become latent. In other words, once the CPU is 100% utilized, the main thread is not processing UI events as fast as it needs to in order to maintain a smooth UI. Specifically, table view scrolling becomes jittery.</p>
<pre><code>Process Name % CPU
SpringBoard 45.1
MyApp 33.8
DTMobileIS 12.2
...
</code></pre>
<p>While the user interacts with the screen or the table is scrolling the main thread's priority becomes 1.0 (the highest possible) and its run loop mode becomes UIEventTrackingMode. Each of the operation's threads are 0.5 priority by default and the asynchronous connections run in the NSDefaultRunLoopMode. Due to my limited understanding of how threads and their run loops interact based on priorities and modes, I am stumped.</p>
<p>Is there a way to safely consume all available CPU time in my app's background threads while still guaranteeing that its main thread is given as much of the CPU as it needs? Perhaps by forcing the main thread to run as often as it needs to? (I thought thread priorities would have taken care of that.)</p>
http://stackoverflow.com/questions/1939682/drawing-in-other-processes-windows-on-macosx1drawing in other processes windows on macosx?gf2009-12-21T11:49:18Z2009-12-21T15:48:50Z
<p>Is it possible to draw in other processes windows on MacOSX using Cocoa or other libraries?<br>
If yes, are there any samples? Alternatively a quick summary of what i'd have to do?<br>
<em>(I need to support at least OSX 10.5)</em> </p>
<p>Shared memory is of course a possible solution, but i'd prefer direct drawing to avoid synchronization overhead and code duplication (the use-case consists of <em>one producer</em> and <em>n clients</em>).</p>
http://stackoverflow.com/questions/1938477/how-can-i-send-a-keyboard-event-to-the-app-through-pressing-a-button1how can i send a keyboard event to the app through pressing a button?tempo2009-12-21T06:12:02Z2009-12-21T15:06:22Z
<p>in fact i am building a virtual keyboard
how can i send a keyboard event to the program through pressing a button?
thanks</p>
http://stackoverflow.com/questions/1939756/abrecordid-for-a-record-in-addressbookunique-id-for-inserted-record-in-addressb0ABRecordID for a record in addressbook(unique id for inserted record in addressbook)Ankit Sachan2009-12-21T12:08:23Z2009-12-21T14:44:33Z
<p>Hello,</p>
<p>I got stuck while adding records to contacts of iphone.</p>
<p>Situation is this I have a view in which contacts are created and inserted to contacts of iphone.</p>
<p>What I want is </p>
<p>Is there a way to find some unique ID of the (record) contact which is inserted. Which will be required to access the contacts in some other view.</p>
<p>Please enlighten me on this.</p>
http://stackoverflow.com/questions/1940398/navigationcontroller-why-will-it-not-work-the-way-i-want-it0NavigationController, Why will it not work the way i want it Oscar2009-12-21T14:25:25Z2009-12-21T14:41:04Z
<p>I'm doing the fourth assignment on the Stanford Iphone Dev Course.</p>
<pre><code>- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after application launch
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
ListViewController *listview = [[ListViewController alloc] initWithNibName:@"ListView" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:listview animated:NO];
[listview release];
}
</code></pre>
<p>So, i'm trying to get my get my listview inside of the navigationcontrollers view. but the thing that happens is that the listview gets a new view with a "back to rootcontroller" button in the navigation bar. and when i click it i get back to the navigationcontroller view that is empty.</p>
<p>what am i doing wrong? </p>
http://stackoverflow.com/questions/1938925/drawing-a-rounded-cornered-nstextfieldcell0Drawing a rounded cornered NSTextFieldCellnanochrome2009-12-21T08:44:28Z2009-12-21T14:05:24Z
<p>My code for my NSTextFieldCell is:</p>
<pre><code>- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
// Drawing code here.
NSGradient *gradient = [[NSGradient alloc] initWithStartingColor:[NSColor lightGrayColor] endingColor:[NSColor grayColor]];
[gradient drawInRect:cellFrame angle:90];
[[self title] drawInRect:cellFrame withAttributes:nil];
}
</code></pre>
<p>I would like to have the NSTextFieldCell to have rounded corners.... how could I do this?</p>
http://stackoverflow.com/questions/1939785/iphone-get-a-list-of-clickable-areas-on-screen-in-cocoa-touch0iPhone: Get a list of clickable areas on screen in cocoa touchAndy Cummins2009-12-21T12:14:02Z2009-12-21T13:12:31Z
<p>Hi All,
I have an iPhone app and I want to get a list of co-ords that are clickable by a user. I want to automate testing and have a client app click around on screen but just choosing random coords isn't ideal so a list of coords that are definitely clickable would be much better.</p>
<p>So far I have this the view passed in is top level window:</p>
<pre><code>getSubViewsCoords:(UIView *)view {
iAppDelegate* appDelegate = [[UIApplication sharedApplication] delegate];
for (UIView *tempView in [view subviews]) {
// check if view responds to touch i.e. is an interactive view.
// go up through responder chain
// check if it reacts
// if it does then add to the gorilla's list
UIView *responderObj = tempView;
while (responderObj = [responderObj nextResponder]) {
if([responderObj respondsToSelector:@selector(touchesBegan:withEvent:)]){
// get xy etc and add to instance var
//then recall this function
// convert to top level windows co-ordinate system.
CGRect viewRect = [tempView convertRect:[tempView bounds] toView:nil];
clickableAreas = [clickableAreas stringByAppendingString: NSStringFromCGRect(viewRect)];
clickableAreas = [clickableAreas stringByAppendingString: @"\n"];
break;
}
}
[self getSubViewsCoords:tempView];
</code></pre>
<p>Is this the correct way to go about it? Is there an easier way to get this information?</p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/1023289/creating-a-highscore-like-system-iphone-side0Creating a highscore like system, iPhone side.natanavra2009-06-21T05:45:15Z2009-12-21T13:11:39Z
<p>I'm sorry for opening a new question, I had to - as I wrote the other question from my iPhone as unregistered user and it is not very comfortable to write from the iPhone.</p>
<p>Rephrasing the question:</p>
<p>Is it possible to use the:</p>
<blockquote>
<p>[NSMutableArray writeToURL:(NSString *)path atomically:(BOOL)AuxSomething];</p>
</blockquote>
<p>In order to send a file (NSMutableArray) XML file to a url, and update the url to contain that file?</p>
<p>for example:
I have an array and I want to upload it to a specific URL and the next time the app launches I want to download that array.</p>
<blockquote>
<p>NSMutableArray *arrayToWrite = [[NSMutableArray alloc] initWithObjects:@"One",@"Two",nil];</p>
<p>[arrayToWrite writeToURL:</p>
<p>[NSURL urlWithString:@"mywebsite.atwebpages.com/myArray.plist"] atomically:YES]; </p>
</blockquote>
<p>And at runtime:</p>
<blockquote>
<p>NSMutableArray *arrayToRead = </p>
<p>[[NSMutableArray alloc] initWithContentsOfURL:[NSURL urlWithString:@"mywebsite.atwebpages.com/myArray.plist"]];</p>
</blockquote>
<p>Meaning, I want to write an NSMutableArray to a URL, which is on a web hosting service <br>(e.g. batcave.net), the URL receives the information and updates server sided files accordingly.
A highscore like setup, user sends his scores, the server updates it's files, other users download the highscores at runtime.</p>
<p>I hope this is clarified.</p>
<p>Edit: What I am looking for is scripting PHP or ASP so the website, the URL where the data is sent to would know how to handle it. I want an example or a tutorial on how to implement this scripting for handling data, if it's possible to do this on a web hosting service.</p>
<p>~Thanks in advance.</p>
http://stackoverflow.com/questions/1931113/encoding-issue-cocoa-error-2612Encoding issue: Cocoa Error 261?Attacus2009-12-18T22:44:40Z2009-12-21T12:07:49Z
<p>So I'm fetching a JSON string from a php script in my iPhone app using:</p>
<pre><code>NSURL *baseURL = [NSURL URLWithString:@"test.php"];
NSError *encodeError = [[NSError alloc] init];
NSString *jsonString = [NSString stringWithContentsOfURL:baseURL encoding:NSUTF8StringEncoding error:&encodeError];
NSLog(@"Error: %@", [encodeError localizedDescription]);
NSLog(@"STRING: %@", jsonString);
</code></pre>
<p>The JSON string validates when I test the output. Now I'm having an encoding issue. When I fetch a single echo'd line such as:</p>
<pre><code>{ "testKey":"é" }
</code></pre>
<p>(I'm aware I could\should be using NSUrlConnection for asynchronous fetching of data, but at this point in the app development, I don't really need it.)</p>
<p>The JSON parser works fine and I am able to create a valid JSON object. However, when I fetch my 2MB JSON string, I get presented with:</p>
<pre><code>Error: Operation could not be completed. (Cocoa error 261.)
</code></pre>
<p>and a Null string. My PHP file is UTF8 itself and I am not using utf8_encode() because that seems to double encode the data since I'm already pulling the data as NSUTF8StringEncoding. Either way, in my single-echo test, it's the approach that allowed me to successfully log \ASDAS style UTF8 escapes when building the JSON object.</p>
<p>What could be causing the error in the case of the larger string?</p>
<p>Also, I'm not sure if it makes a difference, but I'm using the php function addslashes() on my parsed php data to account for quotes and such when building the JSON string.</p>
http://stackoverflow.com/questions/1939302/testing-music-library-in-the-iphone-emulator0Testing Music Library in the iPhone emulatorrui2009-12-21T10:18:27Z2009-12-21T10:32:27Z
<p>I'd like to be able to debug my application in the iPhone emulator. The app uses the Media Library Framework so I'm not really sure whether I'm able to add songs to the emulator and actually try out the app there. Is this possible?</p>
<p>Right now I'm just using the iPod directly for this...</p>
<p>Thanks,
rui</p>