active questions tagged cocoa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:38:05Z http://stackoverflow.com/feeds/tag/cocoa http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1871495/too-much-c-style-in-objective-c-programs 3 Too much C-Style in Objective-C programs? GuidoMB 2009-12-09T03:58:16Z 2009-12-09T05:22:38Z <p>Hi I'm writing this question because I'm a newbie in ObjC and a lot of doubts came to my mind when trying to make my fist training app. The thing is that I have a strong background in C, I've been programming in Java for the last year and I've done some collage stuff with Smalltalk (I mencione this because those are my programming references and those are the languages I'm comparing ObjC with). </p> <p>The first problem I've encountered is that I don't know where to draw a line between ObjC and C, for example when dealing with math operations, Should I use math.h or there is a more "object-way" like you can do in Smalltalk (aNumber raisedTo: 3) ? How does a person with no background at all in C learns ObjC?.</p> <p>Another thing that I couldn't find was a collection's protocol (I've looked over the Foundation Framework documentation given by Apple). Because I want to implement an expresion tree class and I wanna know if there are methods that all collections should implement (like in Smalltalk or Java) or I gotta check by hand every collection and see if there is a cool method that my new collection should have.</p> <p>I don't know if I'm being too stupid or I'm searching for features that the language/framework doesn't have. I want to program in ObjC with the ObjC style not thinking in C, Java or Smalltalk.</p> <p>Sorry if the question was too long. </p> http://stackoverflow.com/questions/1871494/reading-ppt-ms-powerpoint-file-in-objective-c 0 Reading .ppt (MS PowerPoint) file in Objective-C Biranchi 2009-12-09T03:57:43Z 2009-12-09T04:51:24Z <p>Hi All,</p> <p>Any idea how to read a .ppt file in Objective C ?</p> <p>I tried to load the contents of the file in UIWebView but it didn't work. Here is the code :</p> <pre><code>[aWebView loadData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/vnd.ms-powerpoint" textEncodingName:@"utf-8" baseURL:[NSURL fileURLWithPath:filePath]]; [powerWeb loadData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/vnd.ms-powerpoint" textEncodingName:@"utf-8" baseURL:[NSURL fileURLWithPath:filePath]]; </code></pre> <p>All suggestions are highly appreciated.</p> <p>Thanks</p> http://stackoverflow.com/questions/1870787/setting-up-xcode-for-developing-plug-ins 2 Setting up Xcode for developing Plug-ins chris changchien 2009-12-09T00:10:33Z 2009-12-09T03:25:50Z <p>hi. i have a very basic question. i've never worked in XCode before but i am designing a plugin (objective-c) for an open source radiology program called OsiriX. i can get the thing to compile fun and i can even get the plugin to run in OsiriX. but i'm not sure how to run/debug it from XCode. Run/Debug is grayed out on my xcode. is it because there's no main program? i'm confused. please help. thanks!</p> <p>-chris</p> http://stackoverflow.com/questions/1871380/cocoa-nsstring-not-removing-all-the-characters -1 cocoa: NSString not removing all the characters matt 2009-12-09T03:16:59Z 2009-12-09T03:16:59Z <p>I have an int and for some reason it isn't working after 16 or so. Here's my code:</p> <pre><code>NSArray *sortedArray; sortedArray = [doesntContainAnother sortedArrayUsingFunction:firstNumSort context:NULL]; int count2 = [sortedArray count]; //NSLog(@"%d", count2); int z = 0; while (z &lt; count2) { NSString *myString = [sortedArray objectAtIndex:z]; NSString *intstring = [NSString stringWithFormat:@"%d", z]; NSString *stringWithoutSpaces; stringWithoutSpaces = [[myString stringByReplacingOccurrencesOfString:intstring withString:@""] mutableCopy]; [hopefulfinal addObject:stringWithoutSpaces]; NSLog(@"%@", [hopefulfinal objectAtIndex:z]); z++; } </code></pre> <p>Edit: It's not the int, it's the stringWithoutSpaces line... I can't figure out what's causing it.</p> <p>So it (the NSLog, see above the z++) looks like this:</p> <p>"Here"</p> <p>"whatever"</p> <p>"17 whatevere"</p> <p>"18 this"</p> <p>etc.</p> http://stackoverflow.com/questions/1386743/observe-a-file-or-folder-in-objective-c 4 Observe a File or Folder in Objective-C Garrett 2009-09-06T21:18:06Z 2009-12-09T02:58:55Z <p>What is the best way to listen to a folder or file to see if it has been saved or if a new file has been added?</p> http://stackoverflow.com/questions/1871185/accessing-a-specific-cell-in-an-nstableview 0 Accessing a specific cell in an NSTableView Splash6 2009-12-09T02:02:12Z 2009-12-09T02:44:49Z <p>I have an NSTableView with some cells that where the value of enabled is set through bindings. I want to be able to change the colour of the cells depending on whether the cell is enabled or not. Previously I have done this through the NSTAbleView delegate method tableView: willDisplayCell: forTableColumn: row: which up until now worked fine. I've had to switch off the table delegate though and so I need to find another way to do it. I suspect it's a problem with an obvious answer, but how do I access each cell in the table? I can get the number of rows and columns in the table, and I can cycle trough them, I'm just not sure what method to call to get the cell in column i, row j. </p> http://stackoverflow.com/questions/1871120/how-do-you-show-the-finder-context-menu-from-a-cocoa-application 0 How do you show the Finder context menu from a Cocoa application? Petr 2009-12-09T01:41:53Z 2009-12-09T02:42:53Z <p>I have a file listing in my application and I would like to allow people to right-click on an item and show the same contextual menu as Finder does. Is this possible? </p> <p>The same functionallity but for Windows Explorer is discussed in <a href="http://stackoverflow.com/questions/451287/how-do-you-show-the-windows-explorer-context-menu-from-a-c-application">http://stackoverflow.com/questions/451287/how-do-you-show-the-windows-explorer-context-menu-from-a-c-application</a>. </p> http://stackoverflow.com/questions/1869302/validate-xml-schema-with-xsd-file-in-cocoa 0 Validate XML Schema with xsd file in Cocoa? amrox 2009-12-08T19:33:09Z 2009-12-09T01:23:05Z <p>I have some XML and an XML Schema in a local xsd file. The XML document does not contain any schema information. I want to validate the XML document against the xsd schema file in Cocoa (meaning I'd prefer something NS/CF/libxml based as opposed to an external library).</p> <p>I can across <a href="http://stackoverflow.com/questions/573399/tool-for-xml-xsd-schema-validation">xmllint</a>, which would probably work, but I was looking for a way to do it without launching an external task.</p> http://stackoverflow.com/questions/1870656/sort-nsarrays-by-an-int-contained-in-the-array 0 Sort NSArray's by an int contained in the array matt 2009-12-08T23:38:12Z 2009-12-09T01:13:03Z <p>I have an array, let's call it "array" and inside of the array I have objects like this:</p> <p>"0 Here is an object"</p> <p>"4 Here's another object"</p> <p>"2 Let's put 2 here too!"</p> <p>"1 What the heck, here's another!"</p> <p>"3 Let's put this one right here"</p> <p>I would like to sort the arrays by that number, so it'll turn into this:</p> <p>"0 Here is an object"</p> <p>"1 What the heck, here's another!"</p> <p>"2 Let's put 2 here too!"</p> <p>"3 Let's put this one right here"</p> <p>"4 Here's another object"</p> http://stackoverflow.com/questions/1868955/printing-4x6-cards-in-osx-cocoa 0 printing 4"x6" cards in OSX (cocoa) RMatthews 2009-12-08T18:33:27Z 2009-12-09T00:29:02Z <p>I'm trying to get 4x6 cards to print in Cocoa (story cards). I have a view where I put the data but when I print it prints in the correct orientation, only on 8x11 paper. It must have something to do with how I'm configuring the NSPrintInfo object...but for the life of me I can't figure it out. I've tried it on several different printers and I keep getting the same results. </p> <p>Any ideas?</p> <p>The code that does the printing looks like this:</p> <pre><code>- (IBAction)printCard:(id)sender { int i; for (i=0; i&lt;[storyCards count]; i++) { StoryCard * card = [storyCards objectAtIndex:i]; NSPrintInfo *printInfo = [[NSPrintInfo sharedPrintInfo] copy]; [printInfo setPaperSize:NSMakeSize(4*72, 6*72)]; [printInfo setOrientation:NSLandscapeOrientation]; [printInfo setHorizontalPagination:NSFitPagination]; [printInfo setVerticalPagination:NSFitPagination]; [printInfo setLeftMargin:10.0]; [printInfo setRightMargin:10.0]; [printInfo setTopMargin:10.0]; [printInfo setBottomMargin:10.0]; StoryCardView *view = [[StoryCardView alloc] initWithFrame:[printInfo imageablePageBounds]]; [view setStoryCard:card]; NSPrintOperation *printOp = [NSPrintOperation printOperationWithView:view printInfo:printInfo]; [printOp runOperation]; [view release]; } } </code></pre> http://stackoverflow.com/questions/412562/execute-a-terminal-command-from-a-cocoa-app 8 Execute a terminal command from a Cocoa app lostInTransit 2009-01-05T08:21:32Z 2009-12-08T23:22:37Z <p>Hi</p> <p>How can I execute a terminal command (like <code>grep</code>) from my Objective-C Cocoa application?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1870192/photoshop-like-range-selection-bar-in-cocoa-iphone 0 Photoshop-like range selection bar in Cocoa/iPhone ivanTheTerrible 2009-12-08T22:07:29Z 2009-12-08T22:30:19Z <p>I am wondering how to make the typical "range selection" bar, as seen in Photoshop and many other applications. Cocoa/Cocoa Touch only provide the very basic slide bar.</p> <p><img src="http://ivzhao.com/temp/rangeCocoa.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1869624/objective-c-how-to-resize-a-window-programmatically-with-given-window-id 0 Objective C - how to resize a window programmatically with given window id? dan 2009-12-08T20:29:53Z 2009-12-08T21:47:29Z <p>How to resize a window of any application programmatically with objective-c / cocoa? So far I've got the app name and the window number but don't know how to access the window.</p> <p>I could do it with AppleScript but want to learn it with objective c.</p> <p>AppleScript example:</p> <pre><code>tell application "System Events" set frontApp to name of first application process whose frontmost is true end tell tell application frontApp set bounds of window 1 to {(screenWidth / 2), 0, screenWidth, screenHeight} end tell </code></pre> <p>Thanks for any advice.</p> http://stackoverflow.com/questions/1719888/how-do-i-find-the-size-of-my-core-data-persistent-store-and-the-free-space-on-the 0 How do I find the size of my Core Data persistent store and the free space on the file system? Nic 2009-11-12T04:31:55Z 2009-12-08T21:09:00Z <p>I am working on a database application using the Core Data framework. In this application I need to display how much data the application currently is using on the iPhone. Is there any way to do this?</p> http://stackoverflow.com/questions/1869511/how-to-make-use-of-sender-parameter-in-ibaction-call 0 How to make use of sender parameter in IBAction-call invariant 2009-12-08T20:09:16Z 2009-12-08T20:15:58Z <p>Within an action method such as</p> <pre><code>- (IBAction)myAction:(id)sender { // do something } </code></pre> <p>what can the sender parameter be used for?</p> <p>Is it possible to detect what type of click (such as left mouse down) was made on the control that invoked the action? If so how?</p> http://stackoverflow.com/questions/1866017/concatenating-two-nsstrings-separated-by-a-crlf 0 Concatenating two NSStrings separated by a CRLF Magic Bullet Dave 2009-12-08T10:16:37Z 2009-12-08T20:12:27Z <p>Sorry for the dumb question. I have two NSStrings and I want to create a third that is the first string plus a new line plus the second string. I know this must be easy but I am banging my head looking for it.</p> <p>Ultimately I want the resulting string to display correctly in a table view cell. </p> <p>Regards</p> <p>Dave</p> http://stackoverflow.com/questions/1868513/nsthread-object-retained-twice 0 NSThread object retained twice? Paul J. Lucas 2009-12-08T17:25:06Z 2009-12-08T19:40:12Z <p>I have a class derived from <code>NSThread</code>:</p> <pre><code>@interface FSEventMonitorThread : NSThread { FSEventStreamRef m_fseStreamRef; CFRunLoopRef m_runLoop; } - (id) initWithStream: (FSEventStreamRef)fseStreamRef; - (void) dealloc; - (void) main; @end @implementation FSEventMonitorThread - (id) initWithStream: (FSEventStreamRef)fseStreamRef { if ( self = [super init] ) m_fseStreamRef = fseStreamRef; return self; } - (void) dealloc { CFRunLoopStop( m_runLoop ); FSEventStreamStop( m_fseStreamRef ); [super dealloc]; } - (void) main { m_runLoop = CFRunLoopGetCurrent(); FSEventStreamScheduleWithRunLoop( m_fseStreamRef, m_runLoop, kCFRunLoopDefaultMode ); FSEventStreamStart( m_fseStreamRef ); CFRunLoopRun(); } @end </code></pre> <p>Elsewhere (inside a C++ function), I create an instance:</p> <pre><code>m_thread = [[FSEventMonitorThread alloc] initWithStream:m_fseStreamRef]; </code></pre> <p>My understanding is that the retain-count should now be 1. In another C++ function, I want to stop and deallocate the thread:</p> <pre><code>[m_thread release]; </code></pre> <p>Yet the <code>dealloc</code> method is not called. If I instead do:</p> <pre><code>[m_thread release]; [m_thread release]; </code></pre> <p>then <code>dealloc</code> is called which implies the retain-count was 2. But how did it get to be 2?</p> <p>Note that the documentation for <code>NSThread</code> only mentions retaining when using <code>detachNewThreadSelector:toTarget:withObject:</code>.</p> http://stackoverflow.com/questions/1867174/divx-decoder-libraries 0 DivX Decoder libraries? Chris Becke 2009-12-08T14:04:52Z 2009-12-08T19:23:33Z <p>I saw, in an application from a major software vendor a dll called "DivXDecoder.dll" - which intrigued me as (a) it implies the existence of an easy to use divx library, and (b) I'd rather like to play divx compressed movies in a product I work on.</p> <p>The DivX project itself seems to concentrate on making Codecs and tools for end users. Are there any C/C++ friendly projects that make playback of divx content in Win32 or Cocoa apps possible?</p> http://stackoverflow.com/questions/1866397/what-is-the-best-way-to-define-string-constants-in-an-objective-c-protocol 1 What is the best way to define string constants in an objective-c protocol? Elise van Looij 2009-12-08T11:33:51Z 2009-12-08T19:18:54Z <p>I have defined a protocol that all my plug-ins must implement. I would also like the plug-ins to all use certain strings, like MyPluginErrorDomain. With integers this is quite easily achieved in an enum, but I can't figure out how to do the same with strings. Normally, in classes I would define </p> <pre><code>extern NSString * const MyPluginErrorDomain; </code></pre> <p>in the .h file and in the .m file:</p> <pre><code>NSString * const MyPluginErrorDomain = @"MyPluginErrorDomain"; </code></pre> <p>but that doesn't work very well in a protocol, because then each plug-in would have to provide its own implementation which defeats the purpose of having a constant.</p> <p>I then tried</p> <pre><code>#define MYPLUGIN_ERROR_DOMAIN @"MyPluginErrorDomain" </code></pre> <p>but the implementing classes in the plug-in can't seem to see the #define. Who knows a good solution?</p> http://stackoverflow.com/questions/1843156/randomly-disappearing-struct 0 Randomly disappearing struct Rui Pacheco 2009-12-03T21:48:01Z 2009-12-08T19:15:25Z <p>Hi,</p> <p>I've created a Objective-C class to interface with PostgreSQL using libpq. It mostly works but I have one small problem - the connection seems to disappear randomly.</p> <p>This class is set to open a connection when a window is opened and close that connection before the window closes. On the init code of the window I open the connection and I listen to notifications so I can close the connection with PQfinnish().</p> <p>Now if I open that window, I can run as many queries as I want. But if I close it and open it again I get an EXC_BAD_ACCESS error. The error seems to be inside libpq but I've no idea what I'm doing wrong - there's no examples to follow which makes it a bit harder to follow patterns.</p> <p>I believe there seems to be a problem with the connection object but I can't find out exactly what as all diagnostic functions seem to be returning the right values.</p> <p>Postgresql 8.0, running on latest OS X, latest Xcode and project targeted at 10.5</p> http://stackoverflow.com/questions/1844158/what-exactly-is-a-so-called-class-cluster-in-objective-c 2 What exactly is a so called "Class Cluster" in Objective-C? openfrog 2009-12-04T00:48:30Z 2009-12-08T17:57:42Z <p>I was reading that NSArray is just such a thing. Sounds heavy. I have 7 really fat books here on my desk about Objective-C, Cocoa and C. None of them mention Class Cluster at all, at least I can't find it in the Index at the back of the books. So what's that?</p> http://stackoverflow.com/questions/1857603/lsuielement-behaves-inconsistently-with-activateignoringotherapps 0 LSUIElement behaves inconsistently with activateIgnoringOtherApps iconmaster 2009-12-07T03:11:02Z 2009-12-08T17:14:47Z <p>Specifically, it behaves inconsistently regarding text field focus.</p> <p>I have an LSUIElement popping up a status menu. Within that menu there is a view containing a text field. The text field needs to be selectable -- not necessarily selected by default, but whichever.</p> <p>When the status item is clicked, it triggers</p> <pre><code>[NSApp activateIgnoringOtherApps:YES]; </code></pre> <p>And it works, about half the time.* The other half the status menu seems to consider itself "in the background" and won't let me put focus on the text field even by clicking on it. (I know the status item click-trigger is firing b/c there's an NSLog on it.)</p> <p>Is this a bug in the way Apple handles these status items, or am I mishandling activateIgnoringOtherApps?</p> <p>*In fact, it seems to fail only the first time after another app is activated. After that it works fine.</p> <p>The complete snippet:</p> <pre><code>-(void)statusItemClicked:(id)sender { //show the popup menu associated with the status item. [statusItem popUpStatusItemMenu:statusMenu]; //activate *after* showing the popup menu to obtain focus for the text field. [NSApp activateIgnoringOtherApps:YES]; } </code></pre> http://stackoverflow.com/questions/1863904/how-do-i-deal-with-typing-nested-message-calls-in-objc-source-from-only-the-keybo 3 How do I deal with typing nested message calls in ObjC source from only the keyboard? Des Courtney 2009-12-08T01:02:12Z 2009-12-08T14:56:30Z <p>I think over the last year and a half, while experimenting with Cocoa and Cocoa Touch development, I've been struggling with getting Xcode to support a kind of key macro to handle this specific coding scenario...</p> <p>I frequently find myself not knowing ahead of time how many message dispatches to chain together while typing a new line of code. For example, I might type this... (Pipe character represents cursor location)</p> <pre><code>someVariable = [someObject someMessage]| </code></pre> <p>...I then realize that I need to chain a message from the returned object (since messaging nil is safe in ObjC, this is a common idiom.) So I would need to change the line of code to look like this...</p> <pre><code>someVariable = [[someObject someMessage] | </code></pre> <p>The big problem is having to prepend a left bracket before the bracket pair I'm at the end of, which would entail using the mouse or lots of repeated key tapping each time I needed to do this. After wasting about 40 or so hours off and on trying to find any kind of pre-existing keyboard shortcut or script (I investigated Perl, shell scripting, and even a bit of emacs Lisp scripting in my Googling.), I hacked together this monstrosity in AppleScript, of all things...</p> <pre><code>tell application "System Events" delay 0.2 set editMenu to menu "Edit" of menu bar item "Edit" in menu bar 1 of process "Xcode" set kLeftArrowKey to 123 key code kLeftArrowKey set theMenu to menu item "Balance" in menu "Format" of menu item "Format" in editMenu click theMenu set theMenu to menu item "Bracket Expression" in menu "Objective C" of menu item "Objective C" in menu "Insert Text Macro" of menu item "Insert Text Macro" in editMenu click theMenu key code kLeftArrowKey end tell </code></pre> <p><i>There has got to be a better way.</i></p> <p>I count at least five problems with the above... (which I'll comment on if asked.) I see frequent online complaints from new ObjC developers all the time about this syntax, and I suspect this one typing issue is the major sore point. While I like how the syntax reads (so much so that I avoid the dot notation for properties out of coding consistency), how it's first written kind of sucks. (Just like AppleScript, ironically enough, given my current hacked implementation.)</p> <p>Help me end my suffering, and you'll probably end the suffering of a lot of other ObjC developers as well...</p> http://stackoverflow.com/questions/1867101/how-to-center-nssegmentedcontrol 1 How to center NSSegmentedControl Rui Pacheco 2009-12-08T13:50:47Z 2009-12-08T14:44:29Z <p>Hi,</p> <p>I've added an NSSegmentedControl to a pane on an horizontal split view on a normal window. I thought that adjusting the springs would make the segmented control centre itself automatically, but it doesn't. How can keep it centred?</p> <p>I was told to add an observer for when the parent view's frame changes, and manually adjust the position of the centered view, but I've no idea how to go about that.</p> <p>Any ideas are very welcome.</p> http://stackoverflow.com/questions/1867056/play-m4p-with-audioqueue 0 Play m4p with AudioQueue V1ru8 2009-12-08T13:42:39Z 2009-12-08T13:42:39Z <p>Is it possible to play protected m4p files with AudioQueue? I tried NSSound (it can play m4p) and the AudioQueue sample afplay (does not work otb). Is there any way to play m4p with AudioQueue?</p> http://stackoverflow.com/questions/1861961/pragmatic-way-of-handling-mouse-in-core-animation-layers 0 Pragmatic way of handling mouse in Core Animation layers Jack 2009-12-07T18:30:04Z 2009-12-08T13:27:45Z <p>Hello, I'm starting working with <strong>Core Animation</strong> and I started wondering how to handle various kinds of mouse events like</p> <ol> <li>mouse entered a <code>CALayer</code></li> <li>mouse exited a <code>CALayer</code></li> <li>mouse click on a <code>CALayer</code></li> </ol> <p>For now I'm concentrating just on <code>mouseDown</code> message sent to my custom view. According to the documentation I should use <code>-hitTest:(CGPoint)point</code> calling on my root layer (the one set with <code>[customView setLayer:rootLayer]</code>).</p> <p>It should return the farthest layer in the tree that is in position specified by point. So I did:</p> <pre><code>[rootLayer hitTest:[event locationInWindow]] </code></pre> <p>but it doens't work. It seems to work if I just click on <code>rootLayer</code>, otherwise it returns just <code>null</code>. Of course sublayers are added to rootLayer (infact they are drawn)</p> <p>Am I missing some kind of coordinate conversion? Apart from that, is it the way to handle mouse clicks?</p> <p>To find whenever mouse enters a CALayer do I have to keep hit testing for every movement update of the mouse?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1866747/memory-management-guidelines-on-foundation-functions 0 memory management guidelines on foundation functions gf 2009-12-08T12:47:05Z 2009-12-08T13:00:25Z <p>While memory management for the foundation classes are consistent and documented, i was surprised to find (via the friendly <code>EXC_BAD_ACCESS</code>) that Foundation functions like e.g <code>NSStringFromSelector()</code> seem to return pointers to constant storage - which is at least not mentioned in the documentation for the function.</p> <p>Is that behaviour documented somewhere? Are there any consistent guidelines?</p> http://stackoverflow.com/questions/1855397/core-data-entity-properties-getting-mixed 0 Core Data: entity properties getting mixed nephilim 2009-12-06T13:30:56Z 2009-12-08T12:38:57Z <p>I have an <code>NSWindow</code> which I use to create new records. After pressing the Add button, a certain method is called in which I do the following:</p> <pre><code>- (IBAction)addActionAddSheet:sender { NSManagedObjectContext *moc = [self managedObjectContext]; NSManagedObject *newObject = [NSEntityDescription insertNewObjectForEntityForName:@"Recipe" inManagedObjectContext:moc]; [newObject setValue:[newRecipeName stringValue] forKey:@"name"]; [newObject setValue:[newRecipeInstructions string] forKey:@"instructions"]; NSLog(@"New object is: %@", newObject); [NSApp endSheet:addSheet]; [addSheet orderOut:sender]; } </code></pre> <p>The (edited) output from <code>NSLog</code> after I have executed this twice, is as follows:</p> <pre><code>&lt;NSManagedObject: 0x10045c6a0&gt; (entity: Recipe; id: 0x1004564a0 &lt;x-coredata:///Recipe/t18FEC674-8937-49DF-A18B-940EF82E83C32&gt; ; data: { instructions = X; name = X; }) &lt;NSManagedObject: 0x1149069a0&gt; (entity: Recipe; id: 0x100106a20 &lt;x-coredata:///Recipe/t18FEC674-8937-49DF-A18B-940EF82E83C33&gt; ; data: { instructions = Y; name = Y; }) </code></pre> <p>This is completely as expected. However, my tableview, which is bound to an array controller, shows that both objects X and Y have <strong>X</strong> as value for <code>instructions</code>.</p> <p>When I exit my application and the data is saved, what I see in my xml file is again different:</p> <pre><code> &lt;attribute name="name" type="string"&gt;Y&lt;/attribute&gt; &lt;attribute name="instructions" type="string"&gt;Y&lt;/attribute&gt; &lt;attribute name="name" type="string"&gt;X&lt;/attribute&gt; &lt;attribute name="instructions" type="string"&gt;Y&lt;/attribute&gt; </code></pre> <p>This time they both have value <strong>Y</strong>.</p> <p>The output from <code>NSLog</code> does show that I'm dealing with two different objects here, so I'm not sure what I might be doing that could influence both.</p> <p>These are is my unedited output:</p> <pre><code>2009-12-07 14:46:18.409 Recipe[11578:a0f] managedObjectContext 2009-12-07 14:46:18.411 Recipe[11578:a0f] persistentStoreCoordinator 2009-12-07 14:46:18.411 Recipe[11578:a0f] managedObjectModel 2009-12-07 14:46:18.423 Recipe[11578:a0f] applicationSupportDirectory 2009-12-07 14:46:18.436 Recipe[11578:a0f] externalRecordsDirectory 2009-12-07 14:46:20.484 Recipe[11578:a0f] Show Add sheet 2009-12-07 14:46:20.485 Recipe[11578:a0f] Clear values 2009-12-07 14:46:20.494 Recipe[11578:a0f] call beginSheet 2009-12-07 14:46:23.632 Recipe[11578:a0f] addActionAddSheet: -- Add button clicked 2009-12-07 14:46:23.632 Recipe[11578:a0f] Create new mananged obj in context 2009-12-07 14:46:23.634 Recipe[11578:a0f] managedObjectContext 2009-12-07 14:46:23.635 Recipe[11578:a0f] Set values for name and instructions 2009-12-07 14:46:23.636 Recipe[11578:a0f] New object is: &lt;NSManagedObject: 0x1001c89c0&gt; (entity: Recipe; id: 0x1001c9470 &lt;x-coredata:///Recipe/tE9BD4EE3-082C-4715-AB66-2C3580223F9E2&gt; ; data: { instructions = A; name = A; }) 2009-12-07 14:46:23.636 Recipe[11578:a0f] call [NSApp endSheet:] and [addSheet orderOut:] 2009-12-07 14:46:23.637 Recipe[11578:a0f] addSheetDidEnd:returnCode:contextInfo: -- empty method 2009-12-07 14:46:35.327 Recipe[11578:a0f] Show Add sheet 2009-12-07 14:46:35.328 Recipe[11578:a0f] Clear values 2009-12-07 14:46:35.337 Recipe[11578:a0f] call beginSheet 2009-12-07 14:46:39.836 Recipe[11578:a0f] addActionAddSheet: -- Add button clicked 2009-12-07 14:46:39.836 Recipe[11578:a0f] Create new mananged obj in context 2009-12-07 14:46:39.838 Recipe[11578:a0f] managedObjectContext 2009-12-07 14:46:39.839 Recipe[11578:a0f] Set values for name and instructions 2009-12-07 14:46:39.843 Recipe[11578:a0f] New object is: &lt;NSManagedObject: 0x102070ad0&gt; (entity: Recipe; id: 0x10205e420 &lt;x-coredata:///Recipe/tE9BD4EE3-082C-4715-AB66-2C3580223F9E3&gt; ; data: { instructions = B; name = B; }) 2009-12-07 14:46:39.843 Recipe[11578:a0f] call [NSApp endSheet:] and [addSheet orderOut:] 2009-12-07 14:46:39.844 Recipe[11578:a0f] addSheetDidEnd:returnCode:contextInfo: -- empty method </code></pre> <p>Recipe A:</p> <p><img src="http://web.me.com/bpeiren/recipeA.png"></p> <p>Recipe B:</p> <p><img src="http://web.me.com/bpeiren/recipeB.png"></p> <p>My array controller:</p> <p><img src="http://web.me.com/bpeiren/Cocoa/so/array_controller.png"></p> <p>My table column's bindings:</p> <p><img src="http://web.me.com/bpeiren/Cocoa/so/tablecolumn.png"></p> <p>My label's binding:</p> <p><img src="http://web.me.com/bpeiren/Cocoa/so/label.png"></p> http://stackoverflow.com/questions/1866000/storing-audiobufferlists-from-the-extaudiofile-api-for-later-use 1 Storing AudioBufferLists from the ExtAudioFile API for later use simsimbean 2009-12-08T10:11:55Z 2009-12-08T11:12:12Z <p>Using Xcode/Cocoa and the ExtAudioFile API, I'm trying to store away AudioBufferList* objects away for later use, but I'm running into trouble with re-accessing the data. These objects are coming from repeated ExtAudioFileRead calls.</p> <p>I realize that I can't just stuff these AudioBufferList* objects into an NSArray, but I was under the impression that an NSPointerArray would work for this purpose. However, when trying to access audioBufferList->mBuffers[0].mData after storing the audio buffer lists in the NSPointerArray, they just come back zeroed out.</p> <p>I was memcpying the audioBufferLists to new audioBufferList objects since I'm reusing the same audio buffer list for each ExtAudioFileRead call. I'm not sure if that's sufficient, though, and memcpying the void* audioBufferList->mBuffers[0].mData objects isn't helping either.</p> <p>What's the easiest way to store these AudioBufferList* objects? Am I on the right track?</p> http://stackoverflow.com/questions/1866126/private-methods-or-static-functions-in-objective-c-which-one-should-i-use 2 "Private methods" or static functions in Objective-C. Which one should I use? GuidoMB 2009-12-08T10:38:18Z 2009-12-08T11:11:27Z <p>When reading <a href="http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c">Best way to define private methods for a class in Objective-C</a> I end up with a programming style doubt. Which is the better solution (in terms of style) to this problem? To use a category and declare it in the @interface directive in the .m file or go with the static function that receives an object.</p> <p>Thanks</p>