User Steve918 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:29:41Z http://stackoverflow.com/feeds/user/79854 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081485/osx-mount-local-directory 2 osx 'mount' local directory Steve918 2009-07-04T04:26:20Z 2009-11-13T14:44:29Z <p>is it possible to mount a local directory into another one. Using perfoce I want to do something equivalent to symlinking a directory, but in a way that fools it into thinking it's really just another directory in the project.</p> <p>I would like to do something like:</p> <blockquote> <p>mount /foo/bar /home/foo/bar</p> </blockquote> <p>Is this possible, and if so what options do I need to give it.</p> http://stackoverflow.com/questions/1384362/nsstring-text-pixel-length/1384385#1384385 1 Answer by Steve918 for NSString text pixel length Steve918 2009-09-05T22:12:48Z 2009-09-05T22:12:48Z <p>take a look at this post <a href="http://stackoverflow.com/questions/1340667/pixel-width-of-the-text-in-a-uilabel">http://stackoverflow.com/questions/1340667/pixel-width-of-the-text-in-a-uilabel</a></p> http://stackoverflow.com/questions/1034350/dynamic-class-creation-in-objective-c 2 Dynamic class creation in Objective-C Steve918 2009-06-23T18:37:33Z 2009-08-20T03:49:20Z <p>Is there an equivalent of selectors for classes? How can I create a instance of a class from a string?</p> http://stackoverflow.com/questions/562046/how-to-change-the-tab-of-a-uitabviewcontroller-programmatically/1235729#1235729 0 Answer by Steve918 for How to Change the Tab (of a UITabViewController) Programmatically? Steve918 2009-08-05T21:01:08Z 2009-08-05T21:01:08Z <p>I'm doing something like this:</p> <pre><code>[root setSelectedViewController: [root.historyController navController]]; </code></pre> http://stackoverflow.com/questions/1034373/is-there-a-way-to-create-an-abstract-class-in-objective-c/1034390#1034390 3 Answer by Steve918 for Is there a way to create an abstract class in Objective C? Steve918 2009-06-23T18:45:39Z 2009-06-23T18:45:39Z <p>from <a href="http://www.omnigroup.com/mailman/archive/macosx-dev/2004-August/053887.html" rel="nofollow">http://www.omnigroup.com/mailman/archive/macosx-dev/2004-August/053887.html</a></p> <p>Objective-C doesn't have the abstract compiler construct like Java at this time.</p> <p>So all you do is define the abstract class as any other normal class and implement methods stubs for the abstract methods that either are empty or report non-support for selector. For example...</p> <pre><code>- (id)someMethod:(SomeObject*)blah { [self doesNotRecognizeSelector:_cmd]; return nil; } </code></pre> <p>I also do the following to prevent the initialization of the abstract class via the default initializer.</p> <pre><code>- (id)init { [self doesNotRecognizeSelector:_cmd]; [self release]; return nil; } </code></pre> http://stackoverflow.com/questions/1034343/iphone-os3-changes-to-uiscrollview-subclasses/1034372#1034372 0 Answer by Steve918 for iPhone OS3 changes to UIScrollView subclasses Steve918 2009-06-23T18:42:20Z 2009-06-23T18:42:20Z <p>Check out <a href="http://stackoverflow.com/questions/877828/uiscrollview-touches-vs-subview-touches">http://stackoverflow.com/questions/877828/uiscrollview-touches-vs-subview-touches</a> looks like it might be the same issue.</p> http://stackoverflow.com/questions/1010775/loading-external-bundles-on-iphone 0 Loading external .bundles on iPhone Steve918 2009-06-18T04:26:38Z 2009-06-22T03:48:19Z <p>I would like to add resource files to a .bundle and push them to my application and it seems to work fine in the simulator but fails to build when I change to the device. </p> <blockquote> <p>/Users/sosborn/Projects/MyPro/build/Debug-iphoneos/FooBar.bundle: object file format invalid or unsuitable</p> </blockquote> <p>I don't want to load any code or anything, just plain text and jpegs and it would be nice to be able to package them as dependencies.</p> http://stackoverflow.com/questions/1010775/loading-external-bundles-on-iphone/1025400#1025400 0 Answer by Steve918 for Loading external .bundles on iPhone Steve918 2009-06-22T03:48:19Z 2009-06-22T03:48:19Z <p>I found a better solution to my problem. It actually doesn't require the use of bundles at all. I just created an aggregate target instead of a bundle target. Then I added a copy step and a script step. The copy step contains all of the resources I had in the bundle target and the script step actually zips up the files. Then when I download the content into my application I can just unzip it and use it just as if it were a bundle since I'm just storing resource dependencies.</p> <p>Thanks for your help.</p> http://stackoverflow.com/questions/1010787/realtime-browser-based-game/1010825#1010825 0 Answer by Steve918 for Realtime browser based game Steve918 2009-06-18T04:53:21Z 2009-06-18T04:53:21Z <p>If you want something to react in realtime, polling isn't going to do the job. Your going to need to use some sort of persistent connection via long running http connections or something. (Comet)</p> http://stackoverflow.com/questions/931293/linking-c-sources-in-iphone-project 1 linking c++ sources in iPhone project Steve918 2009-05-31T04:48:35Z 2009-06-17T03:22:40Z <p>I have a single cpp file added to my iPhone project with a .cpp extension, but I'm seeing errors when linking like:</p> <blockquote> <p>operator new[](unsigned long)", referenced from:</p> <p>___gxx_personality_sj0", referenced from:</p> </blockquote> <p>I thought as long as I named the cpp files with .cpp or .mm it would do the right thing, do I need to add some linker flags?</p> <p><strong>Update:</strong> Complete Build log: <a href="http://dpaste.org/tXAy/" rel="nofollow">http://dpaste.org/tXAy/</a></p> <p>The C++ code:</p> <p><a href="http://bacn.me/6vt" rel="nofollow">unzip.h</a></p> <p><a href="http://bacn.me/6vu" rel="nofollow">unzip.cpp</a></p> http://stackoverflow.com/questions/985404/static-libraries-linking-and-dependencies 3 Static libraries, linking and dependencies Steve918 2009-06-12T07:18:27Z 2009-06-12T07:41:49Z <p>I have a static library that I want to distribute that has includes Foo.c/h and someone picks it up and includes my static library in their application.</p> <p>Say they also have Foo.c/h in their application. Will they have linking errors? </p> http://stackoverflow.com/questions/918997/how-do-i-convert-nsstring-with-hexvalue-to-binary-char/985409#985409 0 Answer by Steve918 for How do I convert NSString with Hexvalue to binary char* ? Steve918 2009-06-12T07:19:49Z 2009-06-12T07:19:49Z <pre><code>static NSString* hexval(NSData *data) { NSMutableString *hex = [NSMutableString string]; unsigned char *bytes = (unsigned char *)[data bytes]; char temp[3]; int i = 0; for (i = 0; i &lt; [data length]; i++) { temp[0] = temp[1] = temp[2] = 0; (void)sprintf(temp, "%02x", bytes[i]); [hex appendString:[NSString stringWithUTF8String: temp]]; } return hex; } </code></pre> http://stackoverflow.com/questions/918997/how-do-i-convert-nsstring-with-hexvalue-to-binary-char 1 How do I convert NSString with Hexvalue to binary char* ? Steve918 2009-05-28T02:57:19Z 2009-06-12T07:19:49Z <p>I have a long hex value stored as a NSString, something like:</p> <p>c12761787e93534f6c443be73be31312cbe343816c062a278f3818cb8363c701</p> <p>How do I convert it back into a binary value stored as a char*</p> http://stackoverflow.com/questions/923453/extracting-private-key-from-cer-to-pem-with-openssl 0 Extracting private key from .cer to .pem with openssl Steve918 2009-05-28T22:09:42Z 2009-05-28T22:33:55Z <p>How can I export the private key embedded in an .cer file and convert it to .pem using openssl.</p> <p><strong>Update:</strong></p> <p>If I download a .cer file from Apple and import it into KeyChain, I can export the private key as a .p12 file. How can I do this using openssl?</p> <p><img src="http://farm4.static.flickr.com/3417/3573762565%5F949ef958e4.jpg" alt="alt text" /> <img src="http://farm4.static.flickr.com/3562/3574569572%5Fd29c8ca0b5.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/915410/nstimer-slow-when-use-cgcontextcliptorect-in-iphone-device/921406#921406 0 Answer by Steve918 for NStimer slow when use CGContextClipToRect in iphone device Steve918 2009-05-28T15:16:25Z 2009-05-28T15:16:25Z <p>As U62 said, 100fps is not a realistic expectation, try running it at 30, maybe 60 updates a second and see how it runs. Also if your writing a game that need to run at a high frame rate you should look into writing it in OpenGL.</p> <p>One option may be to process logic every tick, but only draw to the screen every few ticks.</p> http://stackoverflow.com/questions/912701/how-can-i-listen-for-didregisterforremotenotificationswithdevicetoken-outside-the 1 How can I listen for didRegisterForRemoteNotificationsWithDeviceToken outside the app delegate Steve918 2009-05-26T20:51:45Z 2009-05-28T00:49:01Z <p>I would like to my object to receive notification with the DeviceToken becomes available. Is there a way to delegate only certain functions from the UIApplication to my class?</p> <p>Update:</p> <p>I'm not so much interested in accessing it from the application delegate, I already have an application delegate, but want to respond to the event via call back or some observer method if it's possible.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407351#407351 Comment by Steve918 on What's your most controversial programming opinion? Steve918 2009-07-19T05:07:57Z 2009-07-19T05:07:57Z I would code that works is more valuable than code that looks pretty. http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081509#1081509 Comment by Steve918 on osx 'mount' local directory Steve918 2009-07-04T05:20:56Z 2009-07-04T05:20:56Z you can <i>not</i> hardlink directories in OSX via 'ln' http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081535#1081535 Comment by Steve918 on osx 'mount' local directory Steve918 2009-07-04T05:20:21Z 2009-07-04T05:20:21Z --bind option is not available on osx. http://stackoverflow.com/questions/931293/linking-c-sources-in-iphone-project/931364#931364 Comment by Steve918 on linking c++ sources in iPhone project Steve918 2009-05-31T07:15:35Z 2009-05-31T07:15:35Z Adding the linker flags worked, for some reason I thought xcode did that magic for you depending on what the name of the file was. The is a static lib so maybe that has something to do with it. http://stackoverflow.com/questions/931293/linking-c-sources-in-iphone-project/931364#931364 Comment by Steve918 on linking c++ sources in iPhone project Steve918 2009-05-31T05:25:55Z 2009-05-31T05:25:55Z hmm, the .cpp file was already sourcecode.cpp.cpp, the associated header file was .c.h and I updated it to sourcecode.cpp.h but that didn't seem to help any. Any ideas? http://stackoverflow.com/questions/923453/extracting-private-key-from-cer-to-pem-with-openssl Comment by Steve918 on Extracting private key from .cer to .pem with openssl Steve918 2009-05-29T01:05:09Z 2009-05-29T01:05:09Z So what <i>might</i> be going on is that when I generate the CSR Keychain stores the private key and just pairs it with the .cer when it's imported. Which is why they would appear to be linked together. http://stackoverflow.com/questions/918997/how-do-i-convert-nsstring-with-hexvalue-to-binary-char Comment by Steve918 on How do I convert NSString with Hexvalue to binary char* ? Steve918 2009-05-28T03:35:49Z 2009-05-28T03:35:49Z from hex back to bytes, sorry. http://stackoverflow.com/questions/912701/how-can-i-listen-for-didregisterforremotenotificationswithdevicetoken-outside-the/915087#915087 Comment by Steve918 on How can I listen for didRegisterForRemoteNotificationsWithDeviceToken outside the app delegate Steve918 2009-05-28T00:32:15Z 2009-05-28T00:32:15Z I'm sorry my question might not be that clear. I already have an application delegate, but I want some code running in one of my controllers or else where to be able to respond to or listen for the event.