User stefanB - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T22:49:32Z http://stackoverflow.com/feeds/user/45654 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1910693/objective-c-where-to-put-the-nsnotificationcenter/1910854#1910854 1 Answer by stefanB for Objective-C - where to put the NSNotificationCenter ? stefanB 2009-12-15T22:22:11Z 2009-12-15T22:22:11Z <blockquote> <p>Hi, i have an NSNotificationCenter selector,</p> </blockquote> <p>okay, you mean you have a selector for a method in NSNotificationCenter.</p> <blockquote> <p>In Objective-C, “selector” has two meanings. It can be used to refer simply to the name of a method when it’s used in a source-code message to an object. It also, though, refers to the unique identifier that replaces the name when the source code is compiled. <a href="http://developer.apple.com/mac/library/documentation/cocoa/conceptual/ObjectiveC/Articles/ocSelectors.html" rel="nofollow">http://developer.apple.com/mac/library/documentation/cocoa/....../ocSelectors.html</a></p> </blockquote> <p>So you have created a selector that refer to a method.</p> <blockquote> <p>where to put it ?</p> </blockquote> <p>It's a variable, you can store it where ever you feel it fits in your design.</p> <blockquote> <p>in the delegate</p> </blockquote> <p>See above.</p> <blockquote> <p>(if yes then where?)</p> </blockquote> <p>It's a variable, it depends on your usage.</p> <blockquote> <p>in the controller?</p> </blockquote> <p>Do you have controller? Depends on your design.</p> <blockquote> <p>where to put the method as well.</p> </blockquote> <p>Which method?</p> <blockquote> <p>do i need to dealloc the NSNotificationCenter ?</p> </blockquote> <p>No, <code>[NSNotificationCenter defaultCenter]</code> returns a reference to the notification center, you don't dealloc it.</p> http://stackoverflow.com/questions/1904832/does-nscalendar-ordinalityofunitinunitfordate-not-work/1906639#1906639 0 Answer by stefanB for Does -[NSCalendar ordinalityOfUnit:inUnit:forDate:] not work? stefanB 2009-12-15T10:54:08Z 2009-12-15T10:54:08Z <p>Your code seems to work for me (I copy/paste it), I can't see how you handle <code>passedInDate</code>, I setup dates as you specified:</p> <pre><code>NSDateFormatter * formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss Z"]; //NSDate * dateA = [NSDate date]; NSDate * dateA = [formatter dateFromString:@"2009-12-15 06:09:00 +1100"]; NSDate * dateB = [formatter dateFromString:@"2009-12-15 04:17:00 +1100"]; NSUInteger currentMinuteOrdinal = [[NSCalendar currentCalendar] ordinalityOfUnit:NSMinuteCalendarUnit inUnit:NSEraCalendarUnit forDate:dateA]; // current NSUInteger passedInMinuteOrdinal = [[NSCalendar currentCalendar] ordinalityOfUnit:NSMinuteCalendarUnit inUnit:NSEraCalendarUnit forDate:dateB]; // passed in NSUInteger minuteDifference = currentMinuteOrdinal - passedInMinuteOrdinal; NSLog(@" currentMinuteOrdinal: %d", currentMinuteOrdinal); NSLog(@"passedInMinuteOrdinal: %d", passedInMinuteOrdinal); NSLog(@" minuteDifference: %d", minuteDifference); </code></pre> <p>Output in this case:</p> <pre><code>2009-12-15 21:51:46.215 x[50036:903] currentMinuteOrdinal: 1056606130 2009-12-15 21:51:46.216 x[50036:903] passedInMinuteOrdinal: 1056606018 2009-12-15 21:51:46.217 x[50036:903] minuteDifference: 112 </code></pre> http://stackoverflow.com/questions/1905347/a-way-to-automatically-organize-imports-in-xcode/1905395#1905395 1 Answer by stefanB for A way to automatically organize #imports in Xcode stefanB 2009-12-15T05:43:33Z 2009-12-15T05:43:33Z <p><strong>I don't think there is a command for that.</strong></p> <p>For most (all?) Cocoa stuff you add <code>&lt;Cocoa/Cocoa.h&gt;</code> and when you don't require UI just <code>&lt;Foundation/Foundation.h&gt;</code></p> http://stackoverflow.com/questions/901320/anti-joel-test/1904176#1904176 0 Answer by stefanB for Anti-Joel Test stefanB 2009-12-14T23:10:55Z 2009-12-14T23:10:55Z <p>Does your company have a <strong>causal dress code policy</strong> all the time or <strong>only when no 'VIP' are walking around</strong>?</p> <p>I was sold on casual dress code (jeans/T-shirts) during inteviews, I was told not to dress up for interview but more and more often we get email notifications that for next one/two weeks no t-shirts or required black trousers/shirt code ...</p> http://stackoverflow.com/questions/901320/anti-joel-test/905656#905656 2 Answer by stefanB for Anti-Joel Test stefanB 2009-05-25T07:00:45Z 2009-12-14T23:03:33Z <p>Are you required to restart your development box at least once a week? </p> <p>Even though developing for Linux/Unix systems it always feels like Linux development environment is only an after-though. You're given Windows box and have to open millions of terminals and work remotely using vnc with minimalistic setup to not burden the server where every other developer uses Window box. Not to mention that you have to 'restart' once a week when critical patches for software are applied.</p> <p>Where are those companies using Mac OS only environment?</p> <p><strong>EDIT</strong>:</p> <p>Oh did I say "at least once a week"? It's becoming more like once a week but every forth week apply new patches so three restarts a week are required.</p> <p>Someone in my office made a point that Monday morning restart of window box is ok BECAUSE IT"S AFTER WEEKEND. I told him that it's like to expect to take your car to service every Monday, because it's Monday and the car is expected to run for the rest of the week.</p> <p>Sorry if all these restarts are norm in Windows world and people got used to that but my Mac Book Pro I use at home gets restarted about once every two/three months unless I left it unplugged and it runs out of power ... but that does not happen often.</p> http://stackoverflow.com/questions/1903717/objective-c-initialize-variable-to-nil/1903799#1903799 1 Answer by stefanB for objective-c: initialize variable to nil stefanB 2009-12-14T22:00:21Z 2009-12-14T22:00:21Z <p>You should always initialize to nil if variable is not initialized otherwise.</p> <p>You can send messages to nil they will be ignored.</p> <pre><code>NSString * str = nil; NSLog(@"%@", [str description]); </code></pre> <p>Outputs:</p> <pre><code>2009-12-15 08:59:03.352 x[11775] (nil) </code></pre> <p>Of course I don't need to call <code>description</code> explicitly, I'm just demonstrating call to <code>nil</code>.</p> http://stackoverflow.com/questions/1900094/override-description-or-stringvalue-in-cocoa/1900147#1900147 2 Answer by stefanB for override description or stringValue in cocoa? stefanB 2009-12-14T10:38:35Z 2009-12-14T10:38:35Z <p><code>description</code> is the way to go, that's what it's called to supply string representation of an object.</p> <pre><code>- (NSString*)description { return [NSString stringWithFormat:@"%@, %@; %@", a, b, c]; } </code></pre> <p>I believe suggested by Hillegass' book as well.</p> http://stackoverflow.com/questions/1897939/how-do-you-you-run-a-twisted-application-via-python-instead-of-via-twisted/1898013#1898013 1 Answer by stefanB for How do you you run a Twisted application via Python (instead of via Twisted)? stefanB 2009-12-13T22:23:27Z 2009-12-13T22:23:27Z <p>On windows you can create .bat file with your command in it, use full paths, then just click on it to start up.</p> <p>For example I use:</p> <pre><code>runfileserver.bat: C:\program_files\python26\Scripts\twistd.py -y C:\source\python\twisted\fileserver.tac </code></pre> http://stackoverflow.com/questions/1897958/objective-c-getting-uiactivity-indicators-for-images-in-uitableview/1897970#1897970 1 Answer by stefanB for Objective-C: Getting UIActivity indicators for images in UITableView stefanB 2009-12-13T22:12:28Z 2009-12-13T22:12:28Z <p>If I can remember correctly something like that was shown in stanford lectures cs193, iPhone Application Programming, when loading profile pictures from twitter accounts.</p> <p>Have a look for the appropriate presentation (I can't remember which one it was), look at notes that talk about table view then have a look at itunesu video of the lecture.</p> <p><a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php" rel="nofollow">http://www.stanford.edu/class/cs193p/cgi-bin/index.php</a></p> http://stackoverflow.com/questions/1886186/how-to-add-the-more-than-one-button-on-the-right-side-of-the-navigation-bar-in-ob/1886227#1886227 0 Answer by stefanB for How to add the more than one button on the right side of the navigation bar in objective.c. stefanB 2009-12-11T06:39:40Z 2009-12-11T06:39:40Z <p>If you are assigning 3 buttons to <code>rightBarButtonItem</code> then of course you are overwriting the same <code>right bar button item</code> ... there is only one <code>rightBarButtonItem</code></p> <pre><code>self.navigationItem.rightBarButtonItem </code></pre> http://stackoverflow.com/questions/1886157/a-simple-small-shell-script-to-compute-averages/1886208#1886208 0 Answer by stefanB for A simple small shell script to compute averages stefanB 2009-12-11T06:34:56Z 2009-12-11T06:34:56Z <p>By looking at the script there does not seem to be much that you are doing correctly. I recommend looking at some Bash how to and follow simple steps to get it to do what you expect.</p> <ol> <li>no spaces after variable assignment, should be <code>sum=</code> and so on</li> <li><code>while [ ! -f $1 ]</code> might actually do something but not what you expect</li> <li><code>read -p "Re-enter the filename and hit &lt;Enter&gt;: "</code> definitely does not do what you expect</li> <li>and so on</li> </ol> http://stackoverflow.com/questions/1885901/re-doing-the-same-programming-work-as-done-on-the-job/1885942#1885942 7 Answer by stefanB for Re-doing the same programming work as done on the job stefanB 2009-12-11T05:22:13Z 2009-12-11T05:22:13Z <blockquote> <p>the higher-ups forgot about the request</p> </blockquote> <p>I would probably send a request. Something along the lines of </p> <blockquote> <p>Dear whoever is responsible We're using open source software xyz for free in our company. In the course of my current work I have added feature which is used by our company but would be beneficial to public and I would like to submit it to open source community for inclusion in xyz. The pros of doing this are <em>here summarize benefits that you outlined above</em>. Let me know who is the best person to approve this. The sooner it can be submitted the sooner we don't have to maintain it.</p> </blockquote> <p>Then keep pushing and asking until you get the approval.</p> http://stackoverflow.com/questions/1884491/crashing-while-trying-to-move-uitableview-rows/1885068#1885068 0 Answer by stefanB for Crashing while trying to move UITableView rows stefanB 2009-12-11T00:28:38Z 2009-12-11T03:28:27Z <p>Seems like something somewhere is requesting element 6 from an array that only has elements at indexes <code>0-5</code> (meaning 6 elements).</p> <p>This usually happens when the code tries to do:</p> <pre><code>NSUInteger index = [somearray count]; id obj = [somearray objectAtIndex:index]; </code></pre> <p>because <code>count</code> is upper boundary and arrays start from 0 the last element is at <code>count - 1</code>.</p> <p>This might not be directly in your code but you may be restricting something to a number of elements and then requesting one past the last element.</p> http://stackoverflow.com/questions/1880033/communication-between-view-controllers/1884465#1884465 1 Answer by stefanB for Communication between view controllers stefanB 2009-12-10T22:12:45Z 2009-12-10T22:12:45Z <p>Generally you should try to avoid directly passing data between controllers.</p> <p>You can setup your model to which each controller has access and then you could implement notifications to inform the other controller that something happened. The other controller can get whatever data necessary from the model.</p> <p>That way you keep your controllers separated.</p> http://stackoverflow.com/questions/1881719/the-right-place-to-do-things-in-objective-c/1884430#1884430 1 Answer by stefanB for The right place to do things in Objective-C stefanB 2009-12-10T22:05:52Z 2009-12-10T22:05:52Z <p>When you iterate over dictionary there is no need to call <code>[photoDictionary release]</code>:</p> <pre><code>NSDictionary *photosDictionary = [inResponseDictionary valueForKeyPath:@"photos.photo"]; NSDictionary *photoDictionary; FlickrImage *flickrImage; for (photoDictionary in photosDictionary) { ... [photoDictionary release]; </code></pre> <p>I think this is where your problem is.</p> <p>When calling <code>release</code> and the object reaches <code>ref count 0</code> it gets deallocated.</p> <p>Because you were not supposed to do that, later on when the dictionary is released it sends <code>release</code> to each of its elements but you have possibly already deallocated them.</p> <p><strong>This is basic memory management in objective-c</strong>. Have a look at memory management and <code>retain/release/autorelease</code> stuff for more explanation.</p> http://stackoverflow.com/questions/1030113/does-urllib2-in-python-2-6-1-support-proxy-via-https 2 Does urllib2 in Python 2.6.1 support proxy via https stefanB 2009-06-23T00:50:28Z 2009-12-10T11:24:38Z <p>Does <a href="http://docs.python.org/library/urllib2.html" rel="nofollow">urllib2</a> in Python 2.6.1 support proxy via https?</p> <p>I've found the following at <a href="http://www.voidspace.org.uk/python/articles/urllib2.shtml" rel="nofollow">http://www.voidspace.org.uk/python/articles/urllib2.shtml</a>:</p> <blockquote> <p>NOTE</p> <p>Currently urllib2 does not support fetching of https locations through a proxy. This can be a problem.</p> </blockquote> <p>I'm trying automate login in to web site and downloading document, I have valid username/password.</p> <pre><code>proxy_info = { 'host':"axxx", # commented out the real data 'port':"1234" # commented out the real data } proxy_handler = urllib2.ProxyHandler( {"http" : "http://%(host)s:%(port)s" % proxy_info}) opener = urllib2.build_opener(proxy_handler, urllib2.HTTPHandler(debuglevel=1),urllib2.HTTPCookieProcessor()) urllib2.install_opener(opener) fullurl = 'https://correct.url.to.login.page.com/user=a&amp;pswd=b' # example req1 = urllib2.Request(url=fullurl, headers=headers) response = urllib2.urlopen(req1) </code></pre> <p>I've had it working for similar pages but not using HTTPS and I suspect it does not get through proxy - it just gets stuck in the same way as when I did not specify proxy. I need to go out through proxy.</p> <p>I need to authenticate but not using basic authentication, will urllib2 figure out authentication when going via https site (I supply username/password to site via url)?</p> <p>EDIT: Nope, I tested with </p> <pre><code> proxies = { "http" : "http://%(host)s:%(port)s" % proxy_info, "https" : "https://%(host)s:%(port)s" % proxy_info } proxy_handler = urllib2.ProxyHandler(proxies) </code></pre> <p>And I get error:</p> <blockquote> <p>urllib2.URLError: urlopen error [Errno 8] _ssl.c:480: EOF occurred in violation of protocol</p> </blockquote> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/1878325#1878325 0 Answer by stefanB for What do you use to keep notes as a developer? stefanB 2009-12-10T02:37:35Z 2009-12-10T02:37:35Z <p><strong>VIM</strong></p> <p>I keep my notes in a file in home directory called <code>notes.txt</code>. It's easy to update and search, I might start using markup that way I could translate it to web page when needed ...</p> http://stackoverflow.com/questions/1871703/gnustep-nsstring-m-file/1871847#1871847 0 Answer by stefanB for GNUstep NSString.m file stefanB 2009-12-09T05:52:06Z 2009-12-09T05:52:06Z <p><strong>GNUStep</strong> has some tutorials and definitely the source code available.</p> <p>You will find that there are small bits and pieces where <code>Cocoa</code> has moved on so <code>GNUStep</code> will not recognize new methods and things like properties or any new objective-2.0 stuff and so on.</p> http://stackoverflow.com/questions/1871581/working-with-loaddata-is-not-working-properly/1871678#1871678 1 Answer by stefanB for working with loaddata is not working properly stefanB 2009-12-09T05:03:21Z 2009-12-09T05:03:21Z <p>I suspect that this is not right:</p> <pre><code>baseURL:[NSURL fileURLWithPath:filePath] </code></pre> <p>You are using the same full path in <code>loadData</code> and <code>baseURL</code> parts.</p> <p>Do you have a file at the location: <code>/Users/Desktop/bb.ppt</code>, even if you had it there I suspect it will try to access <code>/Users/Desktop/bb.ppt/Users/Desktop/bb.ppt</code> looking at the <code>baseURL</code> setting.</p> http://stackoverflow.com/questions/1840522/how-can-a-programmer-get-out-of-the-learning-void/1870194#1870194 3 Answer by stefanB for How can a programmer get out of the learning "void"? stefanB 2009-12-08T22:07:53Z 2009-12-09T01:05:48Z <p><strong>The more you learn you realize there's even more that you don't know</strong> </p> <p>So you can keep learning and there will always be new stuff, consider knowledge, as in experience, not just technology, think about people knowledge and so on. Once you feel comfortable enough with your technical knowledge think about:</p> <ul> <li>do you know how to <strong>manage a team</strong> to get task completed (maybe a bigger project)</li> <li>do you know how do you manage <strong>code repository</strong> for a team of developers working on the same codebase - you may not be required to actually manage the code but someone may ask you for advice how to set it up on your new project or propose strategy to use</li> <li>do you know how do you <strong>estimate</strong> time/cost of your work</li> <li>do you know how to <strong>bill</strong> your customer, what kind of support/development <strong>contracts</strong> you can offer</li> </ul> http://stackoverflow.com/questions/1870035/struct-vs-class-as-stl-functor-when-using-not2/1870100#1870100 2 Answer by stefanB for struct vs class as STL functor when using not2 stefanB 2009-12-08T21:50:33Z 2009-12-08T21:50:33Z <p>With structure the inheritance is public by default with class it's private by default (if you don't specify public/private/protected)</p> <p>So:</p> <p><code>class mystruct : binary_function</code></p> <p>means</p> <p><code>class mystruct : private binary_function</code></p> <p>but</p> <p><code>struct mystruct : binary_function</code></p> <p>means</p> <p><code>struct mystruct : public binary_function</code></p> <p>For private inheritance the <code>mystruct</code> can use all the public stuff from <code>binary_function</code> but you can't call public method of <code>binary_function</code> on <code>mystruct</code> and <code>mystruct</code> is not of <code>binary_function</code> type (I believe).</p> <p>So when you pass <code>mystruct</code> to where <code>binary_function</code> is expected, <code>mystruct</code> does not define stuff that is expected from <code>binary_function</code>.</p> <p>More specifically, the functor is expected to have the following definitions that are provided by <code>binary_function</code>, so when you inherit from it you already have those declarations:</p> <pre><code>template &lt;class _Arg1, class _Arg2, class _Result&gt; struct binary_function { typedef _Arg1 first_argument_type; ///&lt; the type of the first argument (no surprises here) typedef _Arg2 second_argument_type; ///&lt; the type of the second argument typedef _Result result_type; ///&lt; type of the return type }; </code></pre> http://stackoverflow.com/questions/1866397/what-is-the-best-way-to-define-string-constants-in-an-objective-c-protocol/1866473#1866473 2 Answer by stefanB for What is the best way to define string constants in an objective-c protocol? stefanB 2009-12-08T11:51:31Z 2009-12-08T11:51:31Z <p>You keep the .h definition:</p> <pre><code>extern NSString * const MyPluginErrorDomain; </code></pre> <p>but put this part into a separate .m file that gets included in your framework:</p> <pre><code>NSString * const MyPluginErrorDomain = @"MyPluginErrorDomain"; </code></pre> <p>So plug-ins can still implement the interface but when compiling they link or compile in your other .m file, so they will see the value of <code>MyPluginErrorDomain</code>.</p> http://stackoverflow.com/questions/1864718/cocoa-any-downside-to-using-nsset-as-key-in-nsmutabledictionary 1 Cocoa: Any downside to using NSSet as key in NSMutableDictionary? stefanB 2009-12-08T05:03:40Z 2009-12-08T06:01:38Z <p>Is there any downside to using <code>NSSet</code> as key in <code>NSMutableDictionary</code>, any gotchas to be aware of, any huge performance hits?</p> <p>I think keys are copied in Cocoa containers, does it mean NSSet is copied to dictionary? Or is there some optimization that retains the NSSet in this case?</p> <p>Related to <a href="http://stackoverflow.com/questions/1863061/can-a-nsdictionary-take-in-nsset-as-key">http://stackoverflow.com/questions/1863061/can-a-nsdictionary-take-in-nsset-as-key</a></p> <p>Example code:</p> <pre><code>NSMutableDictionary * dict = [NSMutableDictionary dictionary]; NSSet * set; set = [NSSet setWithObjects:@"a", @"b", @"c", @"d", nil]; [dict setObject:@"1" forKey:set]; set = [NSSet setWithObjects:@"b", @"c", @"d", @"e", nil]; [dict setObject:@"2" forKey:set]; id key; NSEnumerator * enumerator = [dict keyEnumerator]; while ((key = [enumerator nextObject])) NSLog(@"%@ : %@", key, [dict objectForKey:key]); set = [NSSet setWithObjects:@"c", @"b", @"e", @"d", nil]; NSString * value = [dict objectForKey:set]; NSLog(@"set: %@ : key: %@", set, value); </code></pre> <p>Outputs:</p> <pre><code>2009-12-08 15:42:17.885 x[4989] (d, e, b, c) : 2 2009-12-08 15:42:17.887 x[4989] (d, a, b, c) : 1 2009-12-08 15:42:17.887 x[4989] set: (d, e, b, c) : key: 2 </code></pre> http://stackoverflow.com/questions/1864734/how-to-know-which-linux-distribution-im-using/1864755#1864755 1 Answer by stefanB for How to know which Linux Distribution I'm using? stefanB 2009-12-08T05:13:00Z 2009-12-08T05:13:00Z <p>Seems like here's some info:</p> <pre><code>&gt; cat /etc/issue Welcome to SUSE LINUX Enterprise Server 9 (i586) - Kernel \r (\l). &gt; uname -a Linux boxname 2.6.5-7.244-smp #1 SMP Mon Dec 12 18:32:25 UTC 2005 i686 athlon i386 GNU/Linux &gt; cat /etc/*-release SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3 </code></pre> http://stackoverflow.com/questions/1858392/what-is-the-best-way-to-organize-a-group-of-groups-in-obj-c/1859748#1859748 1 Answer by stefanB for What is the best way to organize a group of groups in Obj-c? stefanB 2009-12-07T12:44:40Z 2009-12-08T04:49:41Z <p>Seems like you can use NSSet as key to NSDictionary:</p> <pre><code>NSMutableDictionary * dict = [NSMutableDictionary dictionary]; NSSet * set; set = [NSSet setWithObjects:@"a", @"b", @"c", @"d", nil]; [dict setObject:@"1" forKey:set]; set = [NSSet setWithObjects:@"b", @"c", @"d", @"e", nil]; [dict setObject:@"2" forKey:set]; id key; NSEnumerator * enumerator = [dict keyEnumerator]; while ((key = [enumerator nextObject])) NSLog(@"%@ : %@", key, [dict objectForKey:key]); set = [NSSet setWithObjects:@"c", @"b", @"e", @"d", nil]; NSString * value = [dict objectForKey:set]; NSLog(@"set: %@ : key: %@", set, value); </code></pre> <p>Outputs:</p> <pre><code>2009-12-08 15:42:17.885 x[4989] (d, e, b, c) : 2 2009-12-08 15:42:17.887 x[4989] (d, a, b, c) : 1 2009-12-08 15:42:17.887 x[4989] set: (d, e, b, c) : key: 2 </code></pre> <p><hr></p> <p>Another way is to use <code>NSMutableDictionary</code> that holds multiple <code>NSSet</code>'s of items and price as a key, however is noted this will not work if the price is not unique.</p> <p>You check manually if the set is in dictionary by iterating over items and for each set using <code>isEqualToSet:</code> - unless anyone can come up with better way.</p> <p>If it is you return the price (key) if it is not you can insert it with a price, the main parts:</p> <pre><code>@interface ShoppingList : NSObject { NSMutableDictionary * shoppingList; } </code></pre> <p><hr></p> <pre><code>- (void)setList:(NSSet*)aList forPrice:(double)aPrice { [shoppingList setObject:aList forKey:[NSNumber numberWithDouble:aPrice]]; } </code></pre> <p><hr></p> <pre><code>- (double)priceForList:(NSSet*)aList { id key; NSEnumerator * enumerator = [shoppingList keyEnumerator]; while ((key = [enumerator nextObject])) { NSSet * list = [shoppingList objectForKey:key]; if ([aList isEqualToSet:list]) { return [(NSNumber*)key doubleValue]; } } return 0.0; } </code></pre> <p><hr></p> <pre><code>{ ShoppingList * shoppingList = [[ShoppingList alloc] init]; NSSet * list; double price = 0.0; list = [NSSet setWithObjects:@"apple",@"green_apple",@"pineapple",nil]; [shoppingList setList:list forPrice:9.99]; list = [NSSet setWithObjects:@"grapes",@"banana",@"strawberries",@"apple",nil]; [shoppingList setList:list forPrice:15.99]; list = [NSSet setWithObjects:@"orange",@"grapes",@"green_apple",nil]; [shoppingList setList:list forPrice:7.50]; // searching for this list = [NSSet setWithObjects:@"grapes",@"banana",@"strawberries",@"apple",nil]; price = [shoppingList priceForList:list]; if (price != 0.0) { NSLog(@"price: %.2f, for pricelist: %@", price, list); } else { NSLog(@"shopping list not found: %@", list); [shoppingList setList:list forPrice:15.99]; } } </code></pre> http://stackoverflow.com/questions/1863061/can-a-nsdictionary-take-in-nsset-as-key/1864657#1864657 1 Answer by stefanB for Can a NSDictionary take in NSSet as key? stefanB 2009-12-08T04:45:46Z 2009-12-08T04:45:46Z <p>Yep it seems to work nicely (not sure if there are any gotchas).</p> <pre><code>NSMutableDictionary * dict = [NSMutableDictionary dictionary]; NSSet * set; set = [NSSet setWithObjects:@"a", @"b", @"c", @"d", nil]; [dict setObject:@"1" forKey:set]; set = [NSSet setWithObjects:@"b", @"c", @"d", @"e", nil]; [dict setObject:@"2" forKey:set]; id key; NSEnumerator * enumerator = [dict keyEnumerator]; while ((key = [enumerator nextObject])) NSLog(@"%@ : %@", key, [dict objectForKey:key]); set = [NSSet setWithObjects:@"c", @"b", @"e", @"d", nil]; NSString * value = [dict objectForKey:set]; NSLog(@"set: %@ : key: %@", set, value); </code></pre> <p>Outputs:</p> <pre><code>2009-12-08 15:42:17.885 x[4989] (d, e, b, c) : 2 2009-12-08 15:42:17.887 x[4989] (d, a, b, c) : 1 2009-12-08 15:42:17.887 x[4989] set: (d, e, b, c) : key: 2 </code></pre> http://stackoverflow.com/questions/1864032/in-cpp-file-defining-methods-with-class-foo-void-method-instead-of/1864063#1864063 1 Answer by stefanB for In .cpp file, defining methods with "class Foo { void method() {} };" instead of "void Foo::method() {}"? stefanB 2009-12-08T01:39:26Z 2009-12-08T01:39:26Z <p>yes you have to do it as you show at the top (your original code), I don't think there's a lazy way around it.</p> http://stackoverflow.com/questions/1862593/constant-abuse/1863970#1863970 1 Answer by stefanB for Constant abuse? stefanB 2009-12-08T01:19:21Z 2009-12-08T01:19:21Z <p><strong>I think sometimes people blindly follow 'Coding standards'</strong> which say "Don't use hardcoded values, define them as constants so that it's easier to manage the code when it needs to be updated' - which is fair enough for stuff like:</p> <pre><code>const in MAX_NUMBER_OF_ELEMENTS_I_WILL_ALLOW = 100 </code></pre> <p>But does not make sense for:</p> <pre><code>if(str1.CompareTo(str2) == STRINGS_ARE_EQUAL) </code></pre> <p>Because <strong>everytime I see this code I need to search for what <code>STRINGS_ARE_EQUAL</code> is defined as</strong> and then check with docs if that is correct.</p> <p>Instead if I see:</p> <pre><code>if(str1.CompareTo(str2) == 0) </code></pre> <p>I skip step 1 (search what <code>STRINGS_ARE...</code> is defined as) and can check specs for what value <code>0</code> means.</p> <p>You would correctly feel like replacing this with <code>Equals()</code> and use <code>CompareTo()</code> in cases where you are interested in more that just one case, e.g.:</p> <pre><code>switch (bla.CompareTo(bla1)) { case IS_EQUAL: case IS_SMALLER: case IS_BIGGER: default: } </code></pre> <p>using <code>if/else</code> statements if appropriate (no idea what <code>CompareTo()</code> returns ...)</p> <p>I would still check if you defined the values correctly according to specs.</p> <p>This is of course different if the specs defines something like <code>ComparisonClass::StringsAreEqual</code> value or something like that (I've just made that one up) then you would not use 0 but the appropriate variable.</p> <p>So it depends, when you specifically need to access first element in array <code>arr[0]</code> is better than <code>arr[FIRST_ELEMENT]</code> because I will still go and check what you have defined as <code>FIRST_ELEMENT</code> because I will not trust you and it might be something different than <code>0</code> - for example your <code>0</code> element is dud and the real first element is stored at <code>1</code> - who knows.</p> http://stackoverflow.com/questions/1863466/c-pointers-vs-objective-c-pointers/1863733#1863733 0 Answer by stefanB for C pointers vs. Objective-C pointers stefanB 2009-12-07T23:59:50Z 2009-12-07T23:59:50Z <p><strong>What are you trying to do?</strong></p> <p>Not sure if it will work as you intended.</p> <p><strong>You seem to be taking concepts from C and apply it to Cocoa classes, I thought you were learning C. Have you seen anywhere in Objective-C code taking address of an object?</strong></p> <p>Cocoa classes are implemented using <code>Class clusters</code> which mean that they share the same interface but you will get specific extended class which you manipulate.</p> <p>In your case you are taking address of possibly class that extends <code>NSString</code> and assign it to pointer to <code>NSString</code>.</p> <p>Example:</p> <pre><code>NSString * str = @"Caramel coffee"; NSString * str2 = [NSString stringWithString:@"all"]; NSLog(@"%@", [[str class] className]); NSLog(@"%@", [[str class] className]); </code></pre> <p>Output (GNUStep linux):</p> <pre><code>2009-12-08 10:49:29.149 x[25446] GSCInlineString 2009-12-08 10:49:29.149 x[25446] NSConstantString </code></pre> <p>... apart from the obvious pointer definition problems pointed out by others.</p> http://stackoverflow.com/questions/1858185/how-to-use-nsrunloop-in-objective-c/1858224#1858224 1 Answer by stefanB for how to use NSRunLoop in objective-C ? stefanB 2009-12-07T06:31:58Z 2009-12-07T06:31:58Z <p><strong>You would generally not use <code>NSRunLoop</code> directly in your code.</strong></p> <p>You would for example create <code>GUI</code> application which already has <code>NSRunLoop</code> in it (use predefined application code templates in <code>Xcode</code>).</p> <p>It depends what the variable is that is supposed to change, you might have it somewhere inside your 'Model' object and it will be changed by some even like data arriving online, or linked to GUI object and user performed action.</p> <ul> <li>If it is button you would setup handlers to invoke action.</li> <li>If it is variable you would setup KVC/KVO to detect change and call handler.</li> </ul> <p>And so on, <code>Cocoa</code> will handle the glue code for you, you just need to setup appropriate handling to perform action.</p> <p>There's not enough details in your question, I would suggest having a look at some basic <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjCTutorial/01Introduction/01Introduction.html" rel="nofollow">tutorial at Apple's site for developers</a> to see what is available in Cocoa.</p> http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910850#1910850 Comment by stefanB on [C++] Why aren't pointers initialized with NULL by default? stefanB 2009-12-15T22:33:40Z 2009-12-15T22:33:40Z I guess because C is considered lower level language with easy access to memory (aka pointers) so it gives you freedom do what you want and does not impose overhead by initializing everything. BTW I think it depends on the platform because I worked on linux based mobile platform that initialized all it's memory to 0 before use so all variables would be set to 0. http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910875#1910875 Comment by stefanB on [C++] Why aren't pointers initialized with NULL by default? stefanB 2009-12-15T22:30:53Z 2009-12-15T22:30:53Z @ Jonathan nothing prevents you from initializing pointer to null - or to 0 as is standard in C++. http://stackoverflow.com/questions/1897792/hash-table-faster-in-c-than-c Comment by stefanB on Hash table faster in C# than C++? stefanB 2009-12-13T21:30:20Z 2009-12-13T21:30:20Z how do you measure the performance ? http://stackoverflow.com/questions/1886555/how-remove-scm-from-a-specific-project-in-xcode Comment by stefanB on How remove SCM from a specific project in XCODE stefanB 2009-12-11T08:14:08Z 2009-12-11T08:14:08Z Perforce marks files read only when you check them in. You have to check them out for them to become readable. Pretty annoying 'feature' if you ask me ... http://stackoverflow.com/questions/1886380/how-to-reset-data-base-value Comment by stefanB on how to reset data base value stefanB 2009-12-11T08:11:58Z 2009-12-11T08:11:58Z hm ... me quite not understand your what is question ask http://stackoverflow.com/questions/1885901/re-doing-the-same-programming-work-as-done-on-the-job/1885942#1885942 Comment by stefanB on Re-doing the same programming work as done on the job stefanB 2009-12-11T06:10:15Z 2009-12-11T06:10:15Z They might even add it to their portfolio and put it on top of their website &quot;We have some experts working for us, we've even submitted new features to OpenSSH ... &quot; http://stackoverflow.com/questions/1885901/re-doing-the-same-programming-work-as-done-on-the-job/1885942#1885942 Comment by stefanB on Re-doing the same programming work as done on the job stefanB 2009-12-11T06:08:04Z 2009-12-11T06:08:04Z It should not be difficult for the company to realize the benefit of the work to be release open source since they are already using the software for free and realizing all the benefits, plus they get more eyes on the new code which will help them to find any issues ... the author might always refuse the code as inadequate then you just keep it for yourself ... http://stackoverflow.com/questions/1884491/crashing-while-trying-to-move-uitableview-rows/1885068#1885068 Comment by stefanB on Crashing while trying to move UITableView rows stefanB 2009-12-11T03:28:57Z 2009-12-11T03:28:57Z True, I was just being lazy ... http://stackoverflow.com/questions/1881719/the-right-place-to-do-things-in-objective-c/1884430#1884430 Comment by stefanB on The right place to do things in Objective-C stefanB 2009-12-11T00:01:41Z 2009-12-11T00:01:41Z Memory management is actually quite simple it only gets confusing when you try to design interaction between components and you loose track of who owns what. Objective-c actually adds very nice reference counting management with retain/release/autorelease stuff. If you lookup memory management in Apple specs you will find couple of simple rules to follow which will explain how to use handle memory with relation to using Cocoa. http://stackoverflow.com/questions/1876999/does-c-still-have-a-legitimate-place-in-business-programming Comment by stefanB on Does C++ still have a legitimate place in business programming? stefanB 2009-12-10T02:31:46Z 2009-12-10T02:31:46Z Why not reopen when question like &quot;What’s your favorite programmer cartoon?&quot; are second most voted on? This one is at least asking for feedback from industry - e.g. is c++ still relevant since he does not know anyone using c++ he would like to find out. http://stackoverflow.com/questions/1878226/what-achievements-have-you-gained-in-your-career Comment by stefanB on What achievements have you gained in your career? stefanB 2009-12-10T02:28:57Z 2009-12-10T02:28:57Z If most of your projects failed or you have horrible memory of them do you think that it reflect on your skills? http://stackoverflow.com/questions/1876999/does-c-still-have-a-legitimate-place-in-business-programming Comment by stefanB on Does C++ still have a legitimate place in business programming? stefanB 2009-12-10T02:19:51Z 2009-12-10T02:19:51Z I've been c++ for couple of years, writing code for mobile phone OS (not applications and not drivers), and financial systems - connectivity to financial exchanges - server type stuff, handle lots of data in short amount of time over network. BTW operating systems would probably be written in C/C++ and most probably most applications would use c/c++ possibly objective-c for gui on mac, but the hard work is done in c++. Work is good, hight demand for experienced developers. Companies that keep improving their products want to have libraries in something that will be here next year. http://stackoverflow.com/questions/1871703/gnustep-nsstring-m-file/1871847#1871847 Comment by stefanB on GNUstep NSString.m file stefanB 2009-12-09T09:36:47Z 2009-12-09T09:36:47Z Meaning, you will not usually see the .m files like NSString.m (if one exists) unless you download the source code for Foundation classes and look inside http://stackoverflow.com/questions/1871703/gnustep-nsstring-m-file/1871847#1871847 Comment by stefanB on GNUstep NSString.m file stefanB 2009-12-09T09:35:33Z 2009-12-09T09:35:33Z on mac you would see in the linking process something like <code>-framework Foundation</code> when your code is using Foundation classes http://stackoverflow.com/questions/1871703/gnustep-nsstring-m-file/1871847#1871847 Comment by stefanB on GNUstep NSString.m file stefanB 2009-12-09T09:33:50Z 2009-12-09T09:33:50Z .m files get compiled into objects and are distributed as frameworks (on Mac) after compiling you would link against framework that already provides compiled object files