User Abizern - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T09:39:47Zhttp://stackoverflow.com/feeds/user/41116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1836801/git-should-i-ignore-the-index-or-is-there-a-killer-application-for-it/1836836#18368366Answer by Abizern for Git: Should I ignore the Index or is there a killer application for it?Abizern2009-12-03T00:16:07Z2009-12-03T00:16:07Z<p>You know that the index lets you only commit parts of the files that you want to add to the repository, of course. In general, I find it useful for this reason. I can make changes to files that sort of work, check in the parts that work, and then complete and check in the rest.</p>
<p>For a really killer demonstration; try using it for an interactive add. runs through all your changes and lets you selectively add them to the index. This lets you make a whole load of changes to your files and yet split the commits. Useful for those 'aha' fixes that we all make from time to time. </p>
<p>Have a look at <a href="http://gitcasts.com/posts/interactive-adding" rel="nofollow">this screencast</a> to see how it's done. Not till you try it yourself will you see how useful it is.</p>
http://stackoverflow.com/questions/1829125/display-data-from-nsarray-in-nstableview/1829162#18291623Answer by Abizern for Display data from NSArray in NSTableViewAbizern2009-12-01T21:47:52Z2009-12-01T21:47:52Z<p>You could use it as the data for an NSArrayController which you bind to the NSTableView.</p>
http://stackoverflow.com/questions/208897/find-out-location-of-an-executable-file-in-cocoa/387809#3878092Answer by Abizern for Find out location of an executable file in Cocoa Abizern2008-12-22T23:52:26Z2009-11-30T11:59:27Z<p>Related to Brian Webster's answer:</p>
<p>An easier way to get the User's shell is to use the NSProcessInfo class. e.g</p>
<pre><code>NSDictionary *environmentDict = [[NSProcessInfo processInfo] environment];
NSString *shellString = [environmentDict objectForKey:@"SHELL"];
</code></pre>
<p>Which is easier than using dscl and parsing XML input.</p>
http://stackoverflow.com/questions/386783/nstask-not-picking-up-the-expected-path-from-the-users-environment0NSTask not picking up the expected $PATH from the user's environmentAbizern2008-12-22T17:18:24Z2009-11-30T04:39:01Z
<p>I don't know why this method returns a blank string:</p>
<pre><code>- (NSString *)installedGitLocation {
NSString *launchPath = @"/usr/bin/which";
// Set up the task
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath:launchPath];
NSArray *args = [NSArray arrayWithObject:@"git"];
[task setArguments:args];
// Set the output pipe.
NSPipe *outPipe = [[NSPipe alloc] init];
[task setStandardOutput:outPipe];
[task launch];
NSData *data = [[outPipe fileHandleForReading] readDataToEndOfFile];
NSString *path = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
return path;
}
</code></pre>
<p>If instead of passing <code>@"git"</code> as the argument, I pass <code>@"which"</code> I get <code>/usr/bin/which</code> returned as expected. So at least the principle works.</p>
<p>from the terminal</p>
<pre><code>$ which which
$ /usr/bin/which
$
$ which git
$ /usr/local/git/bin/git
</code></pre>
<p>So it works there.</p>
<p>The only thing I can think of is that <code>which</code> isn't searching through all the paths in my environment.</p>
<p>This is driving me crazy! Does anyone have any ideas?</p>
<p><strong>EDIT:</strong> It looks like this is about setting up either NSTask or the user's shell (e.g., ~/.bashrc) so that the correct environment ($PATH) is seen by NSTask.</p>
http://stackoverflow.com/questions/1812129/what-is-the-range-for-the-date-type-in-core-data/1812966#18129663Answer by Abizern for What is the range for the DATE type in Core Data?Abizern2009-11-28T16:36:48Z2009-11-29T11:33:22Z<p>NSDate works using <a href="http://developer.apple.com/mac/library/documentation/cocoa/reference/Foundation/Miscellaneous/Foundation%5FDataTypes/Reference/reference.html#//apple%5Fref/doc/uid/20000018-SW69" rel="nofollow">NSTimeInterval</a> which is a double.</p>
<blockquote>
<p>always specified in seconds; it yields sub-millisecond precision over a range of 10,000 years.</p>
</blockquote>
<p>I'm not going to work out how far back in time a double will go (order of +/- 10^300 seconds or so), but I think you will be safe to use it for the BC ranges. For example: 1,000 years is about 3x10^11 seconds.</p>
http://stackoverflow.com/questions/1811779/comparing-dates-in-cocoa/1812246#18122464Answer by Abizern for Comparing dates in CocoaAbizern2009-11-28T10:59:25Z2009-11-28T16:11:02Z<p>In the interest of teaching someone how to fish rather than just feeding him:</p>
<p>Have a look at the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/DatesAndTimes/DatesAndTimes.html" rel="nofollow">Date and Time Programming Guide.</a>. The Programming Guides in the documentation are your first stop when trying to understand a topic. They provide an overview of what can be done and contain useful example code. </p>
<p>These guides also have links to the documentation of the specific classes that are used. In this case there is the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html" rel="nofollow">NSDate Class Reference</a> which has sections on <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000188-SW4" rel="nofollow">creating dates</a> and <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000188-SW6" rel="nofollow">comparing dates</a>.</p>
<p><strong>Edit</strong></p>
<p>To answer you comment about this not working, I think the problem could be that you haven't created the object that you've stored in the dictionary as an NSDate. Again. Have a look at the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000188-SW4" rel="nofollow">creating dates</a> documentation. It will be something like</p>
<pre><code>NSDate *expiryDate = [NSDate dateWithNaturalLanguageString:@"31/01/10"];
</code></pre>
<p>But this is just an example, there are other ways of setting a date string.</p>
http://stackoverflow.com/questions/1756001/abpeoplepickerview-how-do-i-get-it-to-scroll-to-a-selected-record2ABPeoplePickerView - How do I get it to scroll to a selected record?Abizern2009-11-18T13:35:49Z2009-11-28T07:13:47Z
<p>I'm using the <code>ABPeoplePicker</code> in a Mac OS X application. I've hooked up a button that changes the selected record to the default 'Me' record.</p>
<p>This works fine, and the record gets selected, but, I need to scroll the table to see the selected record.</p>
<p><code>NSTableView</code> has the <code>-scrollRowToVisible:(NSInteger)rowIndex</code> method, but I can't find anything similar for the <code>ABPeoplePickerView</code></p>
<p>There is a notification <code>ABPeoplePickerNameSelectionDidChangeNotification</code> that is posted when the selected record changes, but I can't find a way of plugging in a property of the record into the view so I can make it visible.</p>
http://stackoverflow.com/questions/374431/how-do-i-ask-for-the-default-temp-directory-on-mac-os-x6How do I ask for the default temp directory on Mac OS X?Abizern2008-12-17T12:42:54Z2009-11-26T14:54:33Z
<p>I'd like to create some directories of data for some unit tests and I'd like these directories to be in the default temporary directory for the user.</p>
<p>I could just create a subdir under /tmp I suppose, but I don't want to make an assumption about how somebody has set up their own machine.</p>
<p>I'm planning on writing the test data on the fly, which is why I'd like to put this into a temporary directory.</p>
http://stackoverflow.com/questions/1789692/section-or-article-which-is-contained-in-which1<section> or <article>, which is contained in whichAbizern2009-11-24T12:13:44Z2009-11-26T09:58:40Z
<p>Trying to get my head around the new semantic elements in HTML5.</p>
<p>Does a <code><section></code> belong inside an <code><article></code> or is it the other way around? Does it even matter?</p>
<p>I'm looking at structuring a wordpress blog something like this:
<img src="http://emberapp.com/abizern/images/littlesnapper-1/sizes/m.png" alt="Attempted layout for html5 blog"></p>
<p>Is this reasonable, or am I missing something?</p>
http://stackoverflow.com/questions/943992/how-to-write-lambda-methods-in-objective-c/944294#9442942Answer by Abizern for How to write lambda methods in Objective-C ?Abizern2009-06-03T11:49:29Z2009-11-25T10:42:01Z<p>I heard André Pang at NSConference talking about how blocks were going to be introduced with the next version of Objective-C.</p>
<p>This should allow functional programming.</p>
<p>Edit: Since Snow Leopard has been released, this is indeed the case. Objective-C now has <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Blocks/Articles/00%5FIntroduction.html" rel="nofollow">Blocks</a>.</p>
http://stackoverflow.com/questions/1763168/xcode-missing-inline-test-results/1763515#17635150Answer by Abizern for XCode missing inline test resultsAbizern2009-11-19T14:08:01Z2009-11-19T14:31:04Z<p>Have a look at your Xcode preferences. Under the Building tab you want to change your settings for Message Bubbles.</p>
<p>This works for Xcode 3.1 which it looks like the image you've shown. Xcode 3.2 has a different style of bubble and doesn't have this preference.</p>
http://stackoverflow.com/questions/1752701/how-to-convert-nsinteger-to-int/1753275#17532753Answer by Abizern for How to convert NSInteger to intAbizern2009-11-18T02:38:09Z2009-11-18T02:38:09Z<p>I'm not sure about the circumstances where you need to convert an <code>NSInteger</code> to an <code>int</code>.</p>
<p>NSInteger is just a typedef:</p>
<p>NSInteger
Used to describe an integer.</p>
<pre><code>#if __LP64__ || TARGET_OS_EMBEDDED || TARGET_OS_IPHONE || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
typedef long NSInteger;
#else
typedef int NSInteger;
#endif
</code></pre>
<p>You can use <code>NSInteger</code> any place you use an <code>int</code> without converting it.</p>
http://stackoverflow.com/questions/1734229/how-can-i-create-a-document-based-application-that-cannot-create-a-new-document/1734244#17342443Answer by Abizern for How can I create a document-based application that cannot create a new document?Abizern2009-11-14T13:35:14Z2009-11-14T13:35:14Z<p>There is an NSApplication delegate protocol method you can implement.</p>
<pre><code> - (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender {
return NO;
}
</code></pre>
<p>Here's the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/NSApplicationDelegate%5FProtocol/Reference/Reference.html#//apple%5Fref/doc/uid/TP40008592-CH1-SW39" rel="nofollow">documentation</a></p>
http://stackoverflow.com/questions/1701582/how-to-use-nscoder/1701610#17016102Answer by Abizern for How to use NSCoderAbizern2009-11-09T15:07:18Z2009-11-09T15:07:18Z<p>I think you should be using <code>-decodeObjectForKey:</code></p>
http://stackoverflow.com/questions/1699249/how-to-set-modification-date-every-time-nsmanagedobject-changes/1700281#17002811Answer by Abizern for How to set modification date every time NSManagedObject changes?Abizern2009-11-09T10:42:51Z2009-11-09T10:42:51Z<p>You could register with the notification center to observe the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/CoreDataFramework/Classes/NSManagedObjectContext%5FClass/NSManagedObjectContext.html#//apple%5Fref/doc/uid/TP30001182-237802" rel="nofollow">NSManagedObjectContextObjectsDidChange</a> notification.</p>
<p>This will tell you what objects are changed. You can check to see if your object is among them and take action accordingly.</p>
http://stackoverflow.com/questions/737809/nspopupbutton-bindings-and-a-shortening-lifespan/738070#7380700Answer by Abizern for NSPopUpButton, Bindings and a shortening lifespanAbizern2009-04-10T15:52:28Z2009-11-07T17:51:07Z<p>You can download a <a href="http://bitbucket.org/abizern/popup/get/tip.zip" rel="nofollow">sample Xcode project here</a>. This sticks as close as I could get to your description.</p>
<p>The important thing is to look at the connections between the array controller, the AppController and the popup box. </p>
<p>Basically, this just demonstrates what Alex said.</p>
http://stackoverflow.com/questions/1683099/nsmanagedobject-setvalue-problem-core-data/1684566#16845662Answer by Abizern for NSManagedObject setValue problem (Core Data)Abizern2009-11-06T00:13:44Z2009-11-07T17:44:05Z<p>As refulgentis said, the clue is in the name of the selector. You're adding a new object.</p>
<p>A better way to do it, rather than using the table, is by using the <code>selectedObjects</code> of your NSArrayController. As an example (this is long winded for clarity and I've written it off the top of my head):</p>
<pre><code>// Get the selected objects from the NSArrayController.
// There may be more than one object selected, so this needs to be accounted for.
NSArray *selectedObjectsArray = [yourArrayController selectedObjects];
// Get the first object in the array, this is the one that will have it's values changed.
id firstSelectedObject = [selectedObjectsArray objectAtIndex:0];
// Change a value in a KVC compliant way
[firstSelectedObject setValue:newValue forKey:@"keyValueToChange"];
</code></pre>
<p><strong>Edited to add after the comment</strong></p>
<p>Have you got an outlet to the array controller and connected it correctly in Interface Builder?</p>
<p>Anyway, the code works for me. Here's an <a href="http://bitbucket.org/abizern/cdtest/get/tip.zip" rel="nofollow">example project</a> showing it working.</p>
http://stackoverflow.com/questions/1681684/object-allocation-from-class-method/1681840#16818404Answer by Abizern for Object allocation from class method?Abizern2009-11-05T16:36:49Z2009-11-05T17:16:01Z<p>You can write it a lot neater as;</p>
<pre><code>+ (id)dataPoint {
return [[[MyDataPoint alloc] init] autorelease];
}
</code></pre>
<p>Note: you should still write an init method; such class methods are usually used for convenience. Also, if you don't have GC, the return value should be autoreleased in line with the Memory Management rules.</p>
<p><strong>Edit</strong> renamed to +dataPoint as corrected by Dave. </p>
http://stackoverflow.com/questions/1519638/should-i-always-use-accessors-for-instance-variables-in-objective-c/1680101#16801010Answer by Abizern for Should I always use accessors for instance variables in Objective-C?Abizern2009-11-05T11:59:50Z2009-11-05T12:08:17Z<p><strong>Public/Private</strong></p>
<p>You can declare your iVars as in the @interface file to be readonly, but then re-declare them in a category so that your class can change them. Here's a <a href="http://stackoverflow.com/questions/360968/category-usage-in-objective-c/361140#361140">quick intro to Categories</a>.</p>
<p>An example:</p>
<pre><code>//MyClass.h
@interface MyClass : NSObject {
NSString *name;
}
@property (readonly) NSString *name;
@end
</code></pre>
<p>And in the implementation file you can redeclare this:</p>
<pre><code>//MyClass.m
@interface MyClass () //declare the class extension
@property (readwrite, copy) NSString *name; //redeclare the property
@end
@implementation MyClass
@synthesize name;
@end
</code></pre>
<p>Now, the <code>name</code> property is readonly external to the class, but can be changed by the class through property syntax or setter/getter syntax.</p>
<p><strong>Really private iVars</strong></p>
<p>If you want to keep iVars really private and only access them directly without going through @property syntax you can declare them with the <code>@private</code> keyword. But then you say "Ah, but they can always get the value outside the class using KVC methods such as <code>setValueForKey:</code>" In which case take a look at the NSKeyValueCoding protocol class method <code>+ (BOOL)accessInstanceVariablesDirectly</code> which stops this.</p>
<p><strong>IBOutlets as properties</strong></p>
<p>The <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/LoadingResources/CocoaNibs/CocoaNibs.html" rel="nofollow">recommended</a> way is to use @property and @synthesize. For Mac OS X, you can just declare them as readonly properties. For example:</p>
<pre><code>//MyClass.h
@interface MyClass : NSObject {
NSView *myView;
}
@property (readonly) IBOutlet NSView *myView;
@end
//MyClass.m
@implementation MyClass
@synthesize myView;
@end
</code></pre>
http://stackoverflow.com/questions/1678760/which-methods-and-class-will-be-invoke-when-reload-a-webpage-or-open-a-new-webpag/1678837#16788371Answer by Abizern for Which methods and class will be invoke when reload a webpage or open a new webpage in safariAbizern2009-11-05T07:10:10Z2009-11-05T10:26:08Z<p>The same delegates are called, you just need to check that the webFrame that is sending this delegate message is the mainFrame by checking that it has no parent. For example:</p>
<pre><code>- (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame {
if(![frame parentFrame]) {
// There is no parent frame so this is the main frame.
}
// other actions for child frames.
}
</code></pre>
http://stackoverflow.com/questions/1589724/advantage-of-data-type-id-vs-nsstring-in-objective-c/1589782#158978210Answer by Abizern for Advantage of data type id vs NSString in Objective C?Abizern2009-10-19T16:40:10Z2009-11-05T09:12:39Z<p>If you're creating an <code>NSString</code>, then you might as well declare it as an <code>NSString</code>, and let the compiler help you.</p>
<p>The point of using id is to preventing strong coupling, and to use objects whose types are not known until a later time. e.g IBAction methods include the sender as a parameter as an id, because the exact type of the object isn't known.</p>
<p><strong>Edited to add:</strong></p>
<p>You may be new to the language, so I'll mention a couple of things</p>
<p>Firstly, where you have <code>@"Hello, World"</code>, you already have an NSString, just one that is static. So you don't need to go through <code>initWithString</code> to create it. Just write:</p>
<pre><code>NSString *s = @"Hello, World";
</code></pre>
<p>And, because you didn't <code>alloc</code> it, you don't have to worry about releasing it.</p>
<p>Secondly s.lowerCaseString. As Stephen has already answered, this is considered to be bad style. When you change a string to lower case, you aren't getting a property of the the string, you are causing an operation to be done on the string, in which case, you really should use bracket syntax.</p>
http://stackoverflow.com/questions/1678637/how-do-i-use-nstreecontroller-nsoutlineview-and-core-data-with-an-invisible-ro/1678726#1678726-1Answer by Abizern for How do I use NSTreeController, NSOutlineView and Core Data with an "invisible" root item?Abizern2009-11-05T06:38:27Z2009-11-05T06:51:25Z<p>Have you tried binding to the NSTreeController's <code>addChild:</code> method?</p>
<p>It's because of times like this that I don't use NSTreeController. </p>
<p>You could do away with it and implement the delegate methods of the Source view which will give you much better control about what you display. It isn't <em>too much</em> extra work and might be easier than banging you head trying to get the NSTreeController to work how you want it to.</p>
http://stackoverflow.com/questions/522341/difference-between-inheritance-and-categories-in-objective-c/522942#5229424Answer by Abizern for Difference between inheritance and Categories in Objective-cAbizern2009-02-07T01:52:16Z2009-11-04T19:35:25Z<p>Sometimes, inheritance just seems like more trouble than it is worth. It is correctly used when you want to add something to an existing class that is a change in the behaviour f that class.</p>
<p>With a Category, you just want the existing object to just do a little more. As already given, if you just want to have a string class that handles compression, you don't need to subclass the string class, you just create a category that handles the compression. That way, you don't need to change the type of the string classes that you already use.</p>
<p>The clue is in the restriction that categories only add methods, you can't add variables to a class using categories. If the class needs more properties, then it has to be subclassed.(edit: you can use associative storage, I believe).</p>
<p>Categories are a nice way to add functionality while at the same time conforming to an object oriented principle to prefer composition over inheritance.</p>
http://stackoverflow.com/questions/1660280/nsmanagedobjectcontextobjectsdidchangenotification-userinfo-dictionary/1661008#16610081Answer by Abizern for NSManagedObjectContextObjectsDidChangeNotification userInfo Dictionary.Abizern2009-11-02T12:25:05Z2009-11-02T15:41:09Z<p>Looking at the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/CoreDataFramework/Classes/NSManagedObjectContext%5FClass/NSManagedObjectContext.html#//apple%5Fref/doc/uid/TP30001182-237802" rel="nofollow">documentation</a> for <code>NSManagedObject</code> gives you an answer.</p>
<p>A notification has <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSNotification%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000218-DontLinkElementID%5F5" rel="nofollow">three instance methods</a> one of which is the <code>-userInfo</code> method which returns the <code>userInfo dictionary</code>.</p>
<p>It looks like your syncKVO: method is incorrect; notification handlers should take the notification object as a parameter.</p>
<p>The <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/CoreDataFramework/Classes/NSManagedObjectContext%5FClass/NSManagedObjectContext.html#//apple%5Fref/doc/uid/TP30001182-237802" rel="nofollow">documentation</a> for the notification you are looking for shows the keys that are in this dictionary for this notification and you can use something like this to get what you might need:</p>
<pre><code>- (void)syncKVO:(NSNotification *)notification {
NSDictionary *userInfoDictionary = [notification userInfo];
NSSet *deletedObjects = [userInfoDictionary objectForKey:NSDeletedObjectsKey];
// do what you want with the deleted objects
}
</code></pre>
http://stackoverflow.com/questions/1660215/cocoa-refresh-nsobjectcontroller-after-unarchiving-data-from-disk/1661350#16613501Answer by Abizern for Cocoa : Refresh NSObjectController after unarchiving Data from disk.Abizern2009-11-02T13:28:51Z2009-11-02T14:16:55Z<p>What you are doing is setting the rpgCharacter iVar directly. In order to trigger KVO you need to do this in a different way either:</p>
<p>if you are using Objective-C 2.0 and property syntax:</p>
<pre><code>if ([aOpenPanel runModal] == NSOKButton)
{
NSString *filename = [aOpenPanel filename];
self.rpgCharacter = [NSKeyedUnarchiver unarchiveObjectWithFile:filename];
}
</code></pre>
<p>or, if you are using KVC directly and have a correctly named setter:</p>
<pre><code>if ([aOpenPanel runModal] == NSOKButton)
{
NSString *filename = [aOpenPanel filename];
[self setRpgCharacter:[NSKeyedUnarchiver unarchiveObjectWithFile:filename]];
}
</code></pre>
http://stackoverflow.com/questions/1587846/how-do-i-show-the-changes-which-have-been-staged/1587952#15879528Answer by Abizern for How do I show the changes which have been staged?Abizern2009-10-19T10:27:21Z2009-10-29T23:47:17Z<p><strong>git diff</strong></p>
<p>To see the changes between the working directory and the index. This shows what has been changed, but is not staged for a commit.</p>
<p><img src="http://emberapp.com/abizern/images/omnigraffle/sizes/m.png" alt="git diff" /></p>
<p><hr /></p>
<p><strong>git diff --cached</strong></p>
<p>To see the changes between the index and the HEAD. This shows what has been added to the index and staged for a commit.</p>
<p><img src="http://emberapp.com/abizern/images/git-diff-cached/sizes/m.png" alt="git diff --cached" /></p>
<p><hr /></p>
<p><strong>git diff HEAD</strong></p>
<p>To see all the changes between the working directory and HEAD (which includes changes in the index). This shows all the changes since the last commit, whether or not they have been staged for commit or not.</p>
<p><img src="http://emberapp.com/abizern/images/git-diff-head/sizes/m.png" alt="alt text" /></p>
<p><hr /></p>
<p>Also:</p>
<p>Have a look at Scott Chacon's short <a href="http://gitcasts.com/posts/git-diff" rel="nofollow">screencast on Git diff</a></p>
http://stackoverflow.com/questions/1625800/retrieving-the-information-in-the-change-dictionary-from-kvo/1625819#16258193Answer by Abizern for Retrieving the information in the `change` dictionary from KVO.Abizern2009-10-26T16:37:54Z2009-10-26T23:37:24Z<p>Here's a list of the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Protocols/NSKeyValueObserving%5FProtocol/Reference/Reference.html#//apple%5Fref/doc/constant%5Fgroup/Keys%5Fused%5Fby%5Fthe%5Fchange%5Fdictionary" rel="nofollow">keys used by the change dictionary</a>.</p>
<p>An extract:</p>
<blockquote>
<h3>Keys used by the change dictionary</h3>
<p>These constants are used as keys in the change dictionary passed to <code>observeValueForKeyPath:ofObject:change:context:</code>.</p>
<pre><code>NSString *const NSKeyValueChangeKindKey;
NSString *const NSKeyValueChangeNewKey;
NSString *const NSKeyValueChangeOldKey;
NSString *const NSKeyValueChangeIndexesKey;
NSString *const NSKeyValueChangeNotificationIsPriorKey;
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1589392/sending-a-selector-to-another-class-and-creating-an-instance-of-a-class/1608898#16088982Answer by Abizern for Sending a Selector to another Class. And Creating an Instance of A Class.Abizern2009-10-22T17:53:43Z2009-10-22T18:07:37Z<blockquote>
<p>-(void) removeObserver {…}</p>
</blockquote>
<p>There's your problem. The <code>-</code> sign identifies this as an instance method; that is only run on objects of the class. What you need to do is declare and define it as:</p>
<pre><code>+(void)removeObserver …
</code></pre>
<p>and you can call this as:</p>
<pre><code>[JGManagedObject removeObserver];
</code></pre>
<p>That way, you wont need to use <code>performSelector:</code> to avoid the error message you get when sending an instance message to a class.</p>
<p>To help you along, here's the relevant <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocLanguageSummary.html#//apple%5Fref/doc/uid/TP30001163-CH3-SW1" rel="nofollow">documentation</a>.</p>
http://stackoverflow.com/questions/1593186/nsstatusbar-animating-text/1594268#15942681Answer by Abizern for NSStatusBar animating textAbizern2009-10-20T12:31:02Z2009-10-20T12:31:02Z<p>A quick Google search threw this up.
<a href="http://www.cocoadev.com/index.pl?BestWayToAnimateLargeScrollingText" rel="nofollow">Animate Large Scrolling Text</a></p>
http://stackoverflow.com/questions/1550658/dispatch-queues-how-to-tell-if-theyre-running-and-how-to-stop-them0Dispatch queues: How to tell if they're running and how to stop them.Abizern2009-10-11T13:12:04Z2009-10-20T11:16:43Z
<p>I'm just playing around with GCD and I've written a toy CoinFlipper app.</p>
<p>Here's the method that flips the coins:</p>
<pre><code>- (void)flipCoins:(NSUInteger)nFlips{
// Create the queues for work
dispatch_queue_t mainQueue = dispatch_get_main_queue();
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, NULL);
// Split the number of flips into whole chunks of kChunkSize and the remainder.
NSUInteger numberOfWholeChunks = nFlips / kChunkSize;
NSUInteger numberOfRemainingFlips = nFlips - numberOfWholeChunks * kChunkSize;
if (numberOfWholeChunks > 0) {
for (NSUInteger index = 0; index < numberOfWholeChunks; index++) {
dispatch_async(queue, ^{
NSUInteger h = 0;
NSUInteger t = 0;
flipTheCoins(kChunkSize, &h, &t);
dispatch_async(mainQueue, ^{
self.nHeads += h;
self.nTails += t;
});
});
}
}
if (numberOfRemainingFlips > 0) {
dispatch_async(queue, ^{
NSUInteger h = 0;
NSUInteger t = 0;
flipTheCoins(numberOfRemainingFlips, &h, &t);
dispatch_async(mainQueue, ^{
self.nHeads += h;
self.nTails += t;
});
});
}
}
</code></pre>
<p>As you can see; I'm breaking the number of flips into large chunks flipping them in the background and updating properties in the main queue. The properties are being observed by the window controller and an UI is updated with the running results.</p>
<p>I've looked through the Concurrency Programming Guide and the GCD docs, and although there is a way to suspend a queue, there isn't a way to stop them, and remove all queued and not running objects.</p>
<p>I'd like to be able to hook up a 'stop' button to cancel flipping once it's started. With <code>NSOperationQueue</code> I can observe the <code>operationCount</code> property to know if it's running, and <code>cancelAllOperations</code> to remove queued blocks.</p>
<p>I've looked through the Concurrency Programming Guide and the GCD docs, and although there is a way to suspend a queue, there isn't a way to stop them, and remove all queued and not running objects.</p>
<p>So :- </p>
<ol>
<li>How do I tell if blocks I've added to a queue are still waiting?</li>
<li>How do I cancel blocks that haven't run yet?</li>
<li>I'm new to the GCD stuff, so am I doing it right?</li>
</ol>
http://stackoverflow.com/questions/1829492/property-refuses-to-synthesize/1830634#1830634Comment by Abizern on Property Refuses to SynthesizeAbizern2009-12-02T11:13:22Z2009-12-02T11:13:22Z+1 for a <i>far</i> better answer.http://stackoverflow.com/questions/1811779/comparing-dates-in-cocoa/1812246#1812246Comment by Abizern on Comparing dates in CocoaAbizern2009-12-02T11:09:20Z2009-12-02T11:09:20ZHave you stored the expiry date in the plist file as a proper NSDate object?http://stackoverflow.com/questions/1820584/releasing-propertycopy-instance-variables/1820608#1820608Comment by Abizern on Releasing @property(copy) instance variables?Abizern2009-12-01T09:39:21Z2009-12-01T09:39:21ZNot just NSString. Any of the other class cluster objects which have mutable/immutable counterparts, e.g. NSArray/NSMutableArray, NSDictionary/NSMutableDictionary. Calling copy on the them prevents the property being unexpectedly changed after it has been set. Also, it is efficient, because if the immutable value is used, the runtime just calls retain on the object instead of copying it. In that sense it is free because it doesn't generate unecessary overhead.http://stackoverflow.com/questions/1813023/functions-in-objective-c/1813125#1813125Comment by Abizern on Functions in Objective-CAbizern2009-11-28T17:25:57Z2009-11-28T17:25:57ZYou're quite correct, C functions are perfectly legal in Obj-C. +1 for style correction as well.http://stackoverflow.com/questions/1811779/comparing-dates-in-cocoa/1812246#1812246Comment by Abizern on Comparing dates in CocoaAbizern2009-11-28T16:41:04Z2009-11-28T16:41:04ZSorry, that's what I meant. The OP should be storing the date object in the dictionary directly, I was just trying to give an example of how he could create this date since the question is asking how to create a date.http://stackoverflow.com/questions/1812129/what-is-the-range-for-the-date-type-in-core-data/1812536#1812536Comment by Abizern on What is the range for the DATE type in Core Data?Abizern2009-11-28T16:28:08Z2009-11-28T16:28:08Z<code>distantPast</code> and <code>distantFuture</code> don't give the boundaries, they are just convenience methods for getting dates a long way into the future and a long way into the past.http://stackoverflow.com/questions/1811779/comparing-dates-in-cocoa/1811812#1811812Comment by Abizern on Comparing dates in CocoaAbizern2009-11-28T16:12:00Z2009-11-28T16:12:00ZAre you storing an NSDate in your dictionary or a string representation of the date?http://stackoverflow.com/questions/1811625/copying-json-response-dictionary-to-plistComment by Abizern on Copying JSON response dictionary to plistAbizern2009-11-28T11:08:24Z2009-11-28T11:08:24ZI've tried to rewrite the question so it's better understood.http://stackoverflow.com/questions/1756001/abpeoplepickerview-how-do-i-get-it-to-scroll-to-a-selected-record/1811845#1811845Comment by Abizern on ABPeoplePickerView - How do I get it to scroll to a selected record?Abizern2009-11-28T10:42:11Z2009-11-28T10:42:11ZThat's exactly what I'm doing, but it doesn't work.http://stackoverflow.com/questions/943992/how-to-write-lambda-methods-in-objective-c/1810458#1810458Comment by Abizern on How to write lambda methods in Objective-C ?Abizern2009-11-28T10:34:03Z2009-11-28T10:34:03Z+1 for a detailed answer.http://stackoverflow.com/questions/1799728/how-to-make-nstableview-scroll-to-most-recently-added-row/1799770#1799770Comment by Abizern on How to make NSTableView scroll to most recently added row?Abizern2009-11-26T19:18:40Z2009-11-26T19:18:40Z+1 because this way handles the usual case where table sorting means that the new row isn't necessarily at the bottom of the table.http://stackoverflow.com/questions/1756001/abpeoplepickerview-how-do-i-get-it-to-scroll-to-a-selected-record/1800556#1800556Comment by Abizern on ABPeoplePickerView - How do I get it to scroll to a selected record?Abizern2009-11-26T14:39:36Z2009-11-26T14:39:36ZIsn't that only in Cocoa-Touch?http://stackoverflow.com/questions/1792926/can-cocoa-be-used-in-filemaker-pluginsComment by Abizern on Can Cocoa be used in FileMaker Plugins?Abizern2009-11-24T21:10:46Z2009-11-24T21:10:46ZMore details? Hard to know without even seeing the error messages you're getting.http://stackoverflow.com/questions/1789692/section-or-article-which-is-contained-in-which/1789745#1789745Comment by Abizern on <section> or <article>, which is contained in whichAbizern2009-11-24T21:09:11Z2009-11-24T21:09:11ZThat sounds right to me. The examples I have found back this up as well. Thanks.http://stackoverflow.com/questions/1768027/a-simple-send-and-receive-program-in-xcodeComment by Abizern on A simple send and receive program in xcodeAbizern2009-11-20T11:51:08Z2009-11-20T11:51:08ZAlmost the same as your previous question <a href="http://stackoverflow.com/questions/1712508/client-to-client-messaging-in-cocoa" rel="nofollow" title="client to client messaging in cocoa">stackoverflow.com/questions/1712508/…</a> and you'll get similar answers as well.