User amrox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:01:02Z http://stackoverflow.com/feeds/user/4468 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1852672/best-way-to-change-the-color-view-of-disclosure-indicator-accessory-view-in-a-tab/1854531#1854531 0 Answer by amrox for Best way to change the color/view of disclosure indicator accessory view in a table view cell in iPhone amrox 2009-12-06T06:16:56Z 2009-12-06T06:16:56Z <blockquote> <p>But I guess adding a new UIView object to every row might turn out to be a heavy obj allocation and decreasing the frame rate. As compared to just a UIImage object in my contentView. I believe UIImage is lighter than UIView.</p> </blockquote> <p>Drawing an image directly will almost certainly have better performance than adding a subview. You have to determine if that extra performance is necessary. I've used a few accessory views for custom disclosure indicators on basic cells and performance was fine. However, if you're already doing custom drawing for the content rect, it might not be that difficult to do the accessory view also.</p> http://stackoverflow.com/questions/1843424/setup-py-test-egg-install-location 0 'setup.py test' egg install location? amrox 2009-12-03T22:25:44Z 2009-12-04T07:03:49Z <p>I have all the eggs my project requires pre-downloaded in a directory, and I would like setuptools to <em>only</em> install packages from that directory.</p> <p>In my <code>setup.cfg</code> I have:</p> <pre><code>[easy_install] allow_hosts = None find_links = ../../setup </code></pre> <p>I run <code>python setup.py develop</code> and it finds and installs all the packages correctly.</p> <p>For testing, I have an additional requirement, specified in <code>setup.py</code>.</p> <pre><code>tests_require=["pinocchio==0.2"], </code></pre> <p>This egg also resides locally in the <code>../../setup</code> directory.</p> <p>I run <code>python setup.py test</code> and it sees the dependency and finds the egg in <code>../../setup</code> just fine. However, the egg gets installed to my <strong>current</strong> directory instead of the <code>site-packages</code> directory with the rest of the eggs.</p> <p>I've tried specifying the <code>install-dir</code> both in <code>setup.cfg</code> and on the command line and neither seemed to work for the <code>tests</code> command.</p> <p>I could just add the dependency to the <code>install_requires</code> section, but I'd like to keep what is required for installation and tests separate if possible.</p> <p>How can I keep the dependency in the <code>tests_require</code> section, but have it installed to the <code>site-packages</code> directory?</p> http://stackoverflow.com/questions/1843251/difference-between-foundation-framework-and-core-foundation-framework/1843286#1843286 4 Answer by amrox for Difference between Foundation Framework and Core Foundation Framework? amrox 2009-12-03T22:06:31Z 2009-12-03T22:06:31Z <p><strong>Core Foundation</strong> is the C-level API, which provides CFString, CFDictionary and the like.</p> <p><strong>Foundation</strong> is Objective-C, which provides NSString, NSDictionary, etc.</p> http://stackoverflow.com/questions/1835260/can-i-have-a-uibarbuttonitem-with-a-colored-image/1835316#1835316 1 Answer by amrox for Can I have a UIBarButtonItem with a colored image? amrox 2009-12-02T19:44:21Z 2009-12-02T19:44:21Z <p>Here is how I use an image for a UIBarButtonItem:</p> <pre><code>UIImage *image = [UIImage imageNamed:@"buttonImage.png"]; UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.bounds = CGRectMake( 0, 0, image.size.width, image.size.height ); [button setImage:image forState:UIControlStateNormal]; [button addTarget:myTarget action:@selector(myAction) forControlEvents:UIControlEventTouchUpInside]; UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button]; … </code></pre> http://stackoverflow.com/questions/1829922/concatenating-variable-names-in-c/1829944#1829944 0 Answer by amrox for Concatenating Variable Names in C? amrox 2009-12-02T00:30:31Z 2009-12-02T00:30:31Z <p>The C preprocessor can <a href="http://gcc.gnu.org/onlinedocs/cpp/Concatenation.html" rel="nofollow">concatenate</a> symbols, but have you considered just using an array?</p> http://stackoverflow.com/questions/1829467/what-is-initwithcoder/1829509#1829509 2 Answer by amrox for What is initWithCoder? amrox 2009-12-01T22:52:06Z 2009-12-01T22:52:06Z <p><code>initWithCoder:</code> is part of the <code>NSCoder</code> protocol, which is part of the Cocoa serialization system. Read the <a href="http://developer.apple.com/mac/library/documentation/cocoa/Conceptual/Archiving/Archiving.html" rel="nofollow">Archives and Serializations Guide for Cocoa</a>.</p> http://stackoverflow.com/questions/1829210/resizing-images-on-iphone-for-uitableview-image/1829261#1829261 0 Answer by amrox for Resizing images on iPhone for UITableView image amrox 2009-12-01T22:03:47Z 2009-12-01T22:03:47Z <p>This is basically the same question as <a href="http://stackoverflow.com/questions/185652/how-to-scale-a-uiimageview-proportionally">How to scale a UIImageView proportionally ?</a>, which has a <a href="http://stackoverflow.com/questions/185652/how-to-scale-a-uiimageview-proportionally/537697#537697">good answer</a>.</p> <p>Add that category to your project and call it with the size of your view. I've used the code and it works well.</p> http://stackoverflow.com/questions/1781810/xcode-file-system/1828936#1828936 2 Answer by amrox for Xcode file system amrox 2009-12-01T21:07:03Z 2009-12-01T21:07:03Z <p>I came up with proof-of-concept solution that works, but will require some work to use in production. Basically, I set up a new "External Target", which compiles all source files in a given directory into a static library. Then the static library is linked into the Main Application.</p> <p>In detail:</p> <ol> <li>Create a directory (lets call it 'Code') inside your project directory and put some source code in it.</li> <li>Create a Makefile in the Code directory to compile the source into a static library. Mine looks like <a href="http://stackoverflow.pastebin.com/f5b693150" rel="nofollow">this</a>.<strong>*</strong></li> <li>Create an External Target (lets call it 'ExternalCode') and point it to the Code directory where your source and Makefile reside.</li> <li>Build the ExternalCode and create a reference to the compiled static library (ExternalCode.a) in the Products area of your project. Get Info on the reference and change the Path Type to "Relative to Built Product".</li> <li>Make sure ExternalCode.a is in the "Link With Binary Libraries" section of your main target.</li> <li>Add the ExternalCode target as a dependency of your main target</li> <li>Add the Code directory to your "User Header Search Paths" of your main target.</li> </ol> <p>Now when you drop some source files into 'Code', Xcode should recompile everything. I created a <a href="http://www.filedropper.com/xcodefilesystemcompiletest" rel="nofollow">demo project</a> as a proof of concept. To see it work in, copy B.h/m from the 'tmp' directory into the 'Codes' directory.</p> <p><strong>*Caveats:</strong> The Makefile I provided is oversimplified. If you want to use it in a real project, you'll need to spend some time getting all the build flags correct. You'll have to decide whether it's worth it to manually manage the build process instead of letting Xcode handle most of the details for you. And watch out for paths with whitespace in them; Make does not handle them very well.</p> http://stackoverflow.com/questions/1823148/future-popular-languages/1823184#1823184 3 Answer by amrox for Future Popular Languages amrox 2009-11-30T23:41:29Z 2009-11-30T23:41:29Z <p>Steve Yegge already knows what <a href="http://steve-yegge.blogspot.com/2007/02/next-big-language.html" rel="nofollow">The Next Big Language</a> is going to be.</p> http://stackoverflow.com/questions/1821886/check-if-mac-process-is-running-using-bash-by-process-name/1822111#1822111 3 Answer by amrox for Check if Mac process is running using Bash by process name amrox 2009-11-30T20:10:15Z 2009-11-30T20:10:15Z <p>Another way is to use (abuse?) the <code>-d</code> option of the <code>killall</code> command. The <code>-d</code> options won't actually kill the process, but instead print what will be done. It will also exit with status <code>0</code> if it finds a matching process, or <code>1</code> if it does not. Putting this together:</p> <pre><code>#!/bin/bash `/usr/bin/killall -d "$1" &amp;&gt; /dev/null` let "RUNNING = ! $?" # this simply does a boolean 'not' on the return code echo $RUNNING </code></pre> <p>To give credit where its due, I originally pulled this technique from a script in the iTunes installer.</p> http://stackoverflow.com/questions/1821402/creating-an-xcode-project-from-the-command-line/1821446#1821446 0 Answer by amrox for Creating an XCode project from the command line? amrox 2009-11-30T18:15:13Z 2009-11-30T18:15:13Z <p><a href="http://rucola.rubyforge.org/" rel="nofollow">Rucola</a> does something like this for RubyCocoa applications. You may be able to modify it or use the same techniques for the project structure you need.</p> http://stackoverflow.com/questions/1821236/bash-scripting-not-found-errors-and-how-to-write-an-or-statement-solved/1821287#1821287 1 Answer by amrox for Bash Scripting " [!: not found " errors, and how to write an or statement [Solved] amrox 2009-11-30T17:47:48Z 2009-11-30T17:47:48Z <p>The others got the spacing issue with the <code>[</code>, but I noticed a couple other things.</p> <p>You probably need a space in your <code>rm</code> command in line 23:</p> <pre><code>rm -r $f </code></pre> <p>Also, it's usually good practice to double quote file paths. This will allow your script to handle filenames with spaces and other special characters correctly.</p> <pre><code>rm -r "$f" </code></pre> http://stackoverflow.com/questions/1798414/drawing-incrementally-in-a-uiview-iphone/1799037#1799037 1 Answer by amrox for Drawing incrementally in a UIView (iPhone) amrox 2009-11-25T18:33:06Z 2009-11-25T18:33:06Z <p>If I understand your problem correctly, I would try drawing to a <code>CGBitmapContext</code> instead of the screen directly. Then in the <code>drawRect</code>, draw only the portion of the pre-rendered bitmap that is necessary from the <code>rect</code> parameter.</p> http://stackoverflow.com/questions/1798457/iphone-analysis-design-creating-work-flow/1798991#1798991 1 Answer by amrox for iphone Analysis & design - creating work flow amrox 2009-11-25T18:26:09Z 2009-11-25T18:26:09Z <p><a href="http://mockapp.com/about/" rel="nofollow">MockApp</a> is a free Keynote template for mocking/prototyping iPhone apps. </p> http://stackoverflow.com/questions/1792512/objective-c-get-time-between-two-times-of-the-day/1792676#1792676 1 Answer by amrox for [objective-C] get time between two times of the day amrox 2009-11-24T20:21:36Z 2009-11-24T21:07:57Z <p>Here's my quick solution:</p> <pre><code>NSDateFormatter *df = [[[NSDateFormatter alloc] init] autorelease]; [df setDateFormat:@"HH:mm"]; NSDate *date1 = [df dateFromString:@"14:10"]; NSDate *date2 = [df dateFromString:@"18:09"]; NSTimeInterval interval = [date2 timeIntervalSinceDate:date1]; int hours = (int)interval / 3600; // integer division to get the hours part int minutes = (interval - (hours*3600)) / 60; // interval minus hours part (in seconds) divided by 60 yields minutes NSString *timeDiff = [NSString stringWithFormat:@"%d:%02d", hours, minutes]; </code></pre> http://stackoverflow.com/questions/1792815/delegates-cant-get-my-head-around-them/1792871#1792871 3 Answer by amrox for Delegates, can't get my head around them amrox 2009-11-24T20:57:18Z 2009-11-24T20:57:18Z <p>In Cocoa, objects almost always identify themselves when calling a delegate method. For example, UITableView passes itself as the first parameter of the delegate message when calling it:</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath </code></pre> <p>If you wanted the same delegate to handle multiple UITableViews, then you just need a some conditional on the <code>tableView</code> object passed to the method:</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if (tableView == self.myFirstTableView) { // do stuff } else if (tableView == self.mySecondtableView) { // do other stuff } } </code></pre> <p>}</p> <p>If you don't want to compare the object pointers directly, you can always use the <code>tag</code> property to uniquely identify your views.</p> http://stackoverflow.com/questions/1748981/nsurl-encoding-in-objc/1749049#1749049 2 Answer by amrox for NSURL Encoding in ObjC amrox 2009-11-17T13:53:31Z 2009-11-17T13:53:31Z <p><strong>stringByAddingPercentEscapesUsingEncoding:</strong> has some <a href="http://jongampark.wordpress.com/2009/03/21/bugs-in-stringbyaddingpercentescapesusingencoding/" rel="nofollow">problems with URL arguments</a>.</p> <p>In conjunction I use <strong>gtm_stringByEscapingForURLArgument</strong> from <a href="http://code.google.com/p/google-toolbox-for-mac/" rel="nofollow">Google Toolbox for Mac</a> for URL arguments.</p> http://stackoverflow.com/questions/1718824/customize-login-page-template-for-authkit-with-pylons 0 Customize login page template for Authkit with Pylons? amrox 2009-11-11T23:30:58Z 2009-11-16T18:55:53Z <p>I'm new to both Pylons and AuthKit. I have basic authentication via AuthKit working in my application, but I don't know how to customize the template for the login page. The one included with AuthKit is very generic. </p> <p>I found <a href="http://jimmyg.org/blog/2007/pylons-mako-templates-in-authkit.html" rel="nofollow">Pylons: Mako Templates in AuthKit</a>, but I thought there might be a more up-to-date solution.</p> http://stackoverflow.com/questions/1147667/debugging-independent-unit-test-bundle-for-iphone 1 Debugging independent unit test bundle for iPhone? amrox 2009-07-18T14:23:19Z 2009-10-26T03:06:19Z <p>I created an independent 'LogicTest' bundle as described in Apple's latest and greatest <a href="http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone%5Fdevelopment/135-Unit%5FTesting%5FApplications/unit%5Ftesting%5Fapplications.html" rel="nofollow">instructions for iPhone projects</a>.</p> <p>I've successfully set up and debugged dependent test bundles on Mac OS, just fine. However I have not worked with independent bundles nor test bundles for iPhone before. The test bundle builds and executes tests just fine, but I'd like to be able to step-through debug it also. I feel like a custom executable pointing to otest is involved, but I don't know the right arguments and environments variables to pass to it.</p> <p>Any help would be appreciated.</p> <ul> <li>This is a <a href="http://www.cocoabuilder.com/archive/message/xcode/2009/7/16/29458" rel="nofollow">repost</a> from the xcode-users mailing list, but I got no response there.</li> </ul> http://stackoverflow.com/questions/1301801/how-do-i-make-this-not-leak-iphone-sdk/1301847#1301847 1 Answer by amrox for how do i make this not leak? (iphone sdk) amrox 2009-08-19T18:38:21Z 2009-08-19T18:38:21Z <p>Autorelease while solve your leaks. It can be very handy, but just don't overuse it. It seems reasonable to use in this case though.</p> <pre><code>+(NSString*) getBaseURL { … return [baseURL autorelease]; } </code></pre> http://stackoverflow.com/questions/1300620/find-all-files-in-a-directory-that-are-not-directories-themselves/1300661#1300661 0 Answer by amrox for Find all files in a directory that are not directories themselves. amrox 2009-08-19T15:22:03Z 2009-08-19T15:22:03Z <pre><code>find . -type f </code></pre> http://stackoverflow.com/questions/1300218/create-a-universal-binary-from-two-apps/1300285#1300285 1 Answer by amrox for Create a "Universal Binary" from two apps? amrox 2009-08-19T14:18:49Z 2009-08-19T14:18:49Z <p>See the <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/lipo.1.html" rel="nofollow">lipo</a> tool. It will let you stitch together your PPC and i386 binaries.</p> <p>Also, sometimes separate targets for different architectures can be avoided by using <a href="http://developer.apple.com/documentation/developertools/Conceptual/XcodeBuildSystem/300-Build%5FSettings/bs%5Fbuild%5Fsettings.html#//apple%5Fref/doc/uid/TP40002691-SW3" rel="nofollow">conditional build settings</a> in Xcode. This is useful if you need to link against a different binary library for each architecture, for example.</p> http://stackoverflow.com/questions/1245319/how-i-can-set-a-date-string-from-twitter-to-a-nsdate/1245480#1245480 2 Answer by amrox for How I can set a date string from twitter to a NSDATE amrox 2009-08-07T15:39:10Z 2009-08-07T15:39:10Z <p>If the object associated with the @"created_at" key is a valid NSDate object, this code should work.</p> <p>However, I'm guessing that it is actually an NSString. If so, it will produce the behavior you're describing.</p> <p>If I'm right, the code snippet above is assigning an NSString object to an NSDate reference. NSDictionary returns untyped 'id' objects, so the compiler won't give you a type mismatch warning.</p> <p>You'll have to use NSDateFormatter to parse the string into an NSDate (see dateFromString:).</p> http://stackoverflow.com/questions/1132508/how-to-emulate-cp-update-behavior-on-mac-os-x 1 How to emulate 'cp --update' behavior on Mac OS X? amrox 2009-07-15T16:33:23Z 2009-07-15T17:09:04Z <p>The <a href="http://linux.die.net/man/1/cp" rel="nofollow">GNU/Linux version of <code>cp</code></a> has a nice <code>--update</code> flag:</p> <blockquote> <p><strong>-u, --update</strong> copy only when the SOURCE file is newer than the destination file or when the destination file is missing </p> </blockquote> <p>The <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/cp.1.html" rel="nofollow">Mac OS X version of <code>cp</code></a> lacks this flag.</p> <p>What is the best way to get the behavior of <code>cp --update</code> by using built-in system command line programs? I want to avoid installing any extra tools (including the GNU version of <code>cp</code>).</p> http://stackoverflow.com/questions/1034745/iphone-using-c-libraries/1035492#1035492 1 Answer by amrox for iPhone: Using C Libraries amrox 2009-06-23T22:00:10Z 2009-06-23T22:00:10Z <p>I'm interpretting this question as:</p> <p><em>"Should I compile the C library code once, and include the binary library in my project? Or should I include all the source and compile it every time I build my app?"</em></p> <p>It depends. One of the projects I work one depends on several external libraries. Basically, we have a simple rule:</p> <ul> <li><p>Do you think you will need to change code in the C library often?</p> <ul> <li>If you will be changing the code, or updating versions often, include the source and build it with the rest of your project.</li> <li>If you're not going to change the code often or at all, it might make sense to just include the pre-built binary in your project.</li> </ul></li> </ul> <p>Depending on the size of the library, you may want to set it up as a distinct target in your project, or for even more flexibility, as a sub-project of your main project.</p> <p>If I was in your place, I would build libssh2 ahead of time and just include the binary library in my iPhone project. I would still keep the libssh2 source around, of course, in case it does need to be re-built down the road.</p> http://stackoverflow.com/questions/1035302/how-to-use-parametrized-method-with-nsnotificationcenter/1035380#1035380 5 Answer by amrox for How to use parametrized method with NSNotificationCenter? amrox 2009-06-23T21:34:06Z 2009-06-23T21:34:06Z <p>You will receive an NSNotification object, not an NSDictionary in the notification callback. </p> <p>Try this:</p> <pre><code>- (void) processit: (NSNotification *)note { NSString *test = [[note userInfo] valueForKey:@"l"]; NSLog(@"output is %@", test); } </code></pre> http://stackoverflow.com/questions/1024175/xcode-naming-executables/1024277#1024277 2 Answer by amrox for Xcode Naming Executables amrox 2009-06-21T16:31:50Z 2009-06-21T16:31:50Z <p>You need to change the Product Name (PRODUCT_NAME) in your target's Build Settings, and you might want to point to a different Info.plist also. <img src="http://web3.twitpic.com/img/13461715-4c0d84c623011739cca45f9b3f44abc3.4a3e605a-full.png" alt="alt text" /></p> http://stackoverflow.com/questions/1023175/reading-nsdictionary-keys-from-property-lists/1024238#1024238 2 Answer by amrox for Reading NSDictionary Keys from property lists amrox 2009-06-21T16:18:19Z 2009-06-21T16:18:19Z <p>You also don't need to loop through the dictionary. Just ask it for the data you want.</p> <pre><code>NSString *path = [[NSBundle mainBundle] pathForResource:@"DataBase" ofType:@"plist"]; NSDictionary *rootDict = [[[NSDictionary alloc] initWithContentsOfFile:path] autorelease]; NNSString *URLString = [[rootDict objectForKey:key] objectForKey:@"URL"]; // do something or return URLString... </code></pre> http://stackoverflow.com/questions/121147/determine-if-a-directory-is-a-bundle-or-package-in-the-mac-os-x-terminal 2 Determine if a directory is a bundle or package in the Mac OS X terminal? amrox 2008-09-23T13:55:20Z 2009-04-12T18:12:26Z <p>I'd like to be able to determine if a directory such as a '.app' is considered to be a package or bundle from Finder's point of view on the command line. I don't think this would be difficult to do with a small shell program, but I'd rather not re-invent the wheel if I don't have to.</p> http://stackoverflow.com/questions/43834/recommended-web-development-environment-on-mac 4 Recommended web development environment on Mac? amrox 2008-09-04T14:11:51Z 2009-03-28T01:27:09Z <p>I'd like to get back into some web development after primarily working on native applications, and I'm looking for advice on how to set up my web development "stack" on my local Mac. Ideally I'd like a setup that is easy to setup and maintain, but remains flexible and extensible. </p> <p>In particular, I plan to use Python, so mod_python is a must.</p> <p>I'm familiar with a few options:</p> <ul> <li>Built-in httpd, configure and compile extensions manually</li> <li>Fink</li> <li>MacPorts</li> <li>MAMP application (<a href="http://www.mamp.info/en/mamp.html" rel="nofollow">http://www.mamp.info/en/mamp.html</a>)</li> </ul> <p>but I don't really know the pro/cons of each, and there are probably other options that I'm not aware of.</p> <p>What setup do you prefer, and what are its advantages and tradeoffs?</p> http://stackoverflow.com/questions/1843424/setup-py-test-egg-install-location/1845315#1845315 Comment by amrox on 'setup.py test' egg install location? amrox 2009-12-04T13:24:45Z 2009-12-04T13:24:45Z Thanks for your response. I'm not going to bother fighting setuptools, and do either A) or B) as you recommended. http://stackoverflow.com/questions/1781810/xcode-file-system/1828936#1828936 Comment by amrox on Xcode file system amrox 2009-12-02T13:53:00Z 2009-12-02T13:53:00Z @fengb I agree that it's a little hackish, but it's the best option I could come up with. The same External Target technique to handle some non objective-c bits it in production environment, and it's working ok so far. http://stackoverflow.com/questions/1829125/display-data-from-nsarray-in-nstableview/1829164#1829164 Comment by amrox on Display data from NSArray in NSTableView amrox 2009-12-01T21:53:58Z 2009-12-01T21:53:58Z NSFetchedResultsController is only available on iPhone, while the question asked specifically about NSTableView, which is only available on Mac. http://stackoverflow.com/questions/1823092/memory-management-of-interface-builder-outlets/1823135#1823135 Comment by amrox on Memory Management of Interface Builder Outlets amrox 2009-11-30T23:38:26Z 2009-11-30T23:38:26Z Did you intentionally omit the 'nonatomic'? http://stackoverflow.com/questions/1821886/check-if-mac-process-is-running-using-bash-by-process-name/1822200#1822200 Comment by amrox on Check if Mac process is running using Bash by process name amrox 2009-11-30T21:40:59Z 2009-11-30T21:40:59Z No it doesn't unfortunately. http://stackoverflow.com/questions/1821886/check-if-mac-process-is-running-using-bash-by-process-name/1822111#1822111 Comment by amrox on Check if Mac process is running using Bash by process name amrox 2009-11-30T21:39:06Z 2009-11-30T21:39:06Z Actually killall is a little smarter than 'ps | grep'. If you just grep the output of ps, you can get false positives. Contrived, but say your process is named 'Library'. 'ps waux | grep Library' will match a lot of stuff on a Mac. The killall method, while a bit wacky I admit, will only match an actual process named 'Library'. http://stackoverflow.com/questions/1792512/objective-c-get-time-between-two-times-of-the-day/1792676#1792676 Comment by amrox on [objective-C] get time between two times of the day amrox 2009-11-24T21:08:58Z 2009-11-24T21:08:58Z sorry, I wrote that with the Mac OS SDK. Corrected for iPhone SDK. http://stackoverflow.com/questions/1683099/nsmanagedobject-setvalue-problem-core-data Comment by amrox on NSManagedObject setValue problem (Core Data) amrox 2009-11-05T20:45:10Z 2009-11-05T20:45:10Z How to update the currently highlighted row depends on how the table is getting it's data. Are you using an ArrayController/bindings or a data source? http://stackoverflow.com/questions/1300620/find-all-files-in-a-directory-that-are-not-directories-themselves/1300661#1300661 Comment by amrox on Find all files in a directory that are not directories themselves. amrox 2009-08-19T15:38:48Z 2009-08-19T15:38:48Z You are right, misread the question. John Kugelman posted a more complete answer. http://stackoverflow.com/questions/1300212/nstimer-from-nsthread Comment by amrox on NStimer from NSThread amrox 2009-08-19T14:12:01Z 2009-08-19T14:12:01Z This question is somewhat vague. Can you provide some more information, or some sample code? http://stackoverflow.com/questions/1023175/reading-nsdictionary-keys-from-property-lists/1023212#1023212 Comment by amrox on Reading NSDictionary Keys from property lists amrox 2009-06-21T16:20:49Z 2009-06-21T16:20:49Z You don't need to alloc/init URLforALl at all. Just initialize it to nil. The dictionary's objectForKey: method will return you give you an autoreleased object. http://stackoverflow.com/questions/474316/hashtables-in-cocoa Comment by amrox on HashTables in Cocoa amrox 2009-01-23T21:08:46Z 2009-01-23T21:08:46Z Technically the Objective-C language doesn't have hash tables or any kind of data structures beyond basic C-arrays. The Cocoa frameworks (in particular Foundation) do, however. http://stackoverflow.com/questions/374159/cocoa-one-row-table-view-or-a-horizontal-list-view Comment by amrox on Cocoa one row table view or a horizontal list view amrox 2008-12-17T13:19:15Z 2008-12-17T13:19:15Z Can you post a screenshot of the desired UI? http://stackoverflow.com/questions/302664/objective-c-and-sqlites-datetime-type/302804#302804 Comment by amrox on Objective-C and sqlite's DATETIME type. amrox 2008-11-19T18:59:53Z 2008-11-19T18:59:53Z timeIntervalSince1970 works for me http://stackoverflow.com/questions/121147/determine-if-a-directory-is-a-bundle-or-package-in-the-mac-os-x-terminal/121181#121181 Comment by amrox on Determine if a directory is a bundle or package in the Mac OS X terminal? amrox 2008-09-23T14:29:06Z 2008-09-23T14:29:06Z Apps always have an contents/Info.plist, but it is not a requirement of a package/bundle. Most document bundles don't have this structure.