User Steve918 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T20:29:41Zhttp://stackoverflow.com/feeds/user/79854http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081485/osx-mount-local-directory2osx 'mount' local directorySteve9182009-07-04T04:26:20Z2009-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#13843851Answer by Steve918 for NSString text pixel lengthSteve9182009-09-05T22:12:48Z2009-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-c2Dynamic class creation in Objective-CSteve9182009-06-23T18:37:33Z2009-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#12357290Answer by Steve918 for How to Change the Tab (of a UITabViewController) Programmatically?Steve9182009-08-05T21:01:08Z2009-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#10343903Answer by Steve918 for Is there a way to create an abstract class in Objective C?Steve9182009-06-23T18:45:39Z2009-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#10343720Answer by Steve918 for iPhone OS3 changes to UIScrollView subclassesSteve9182009-06-23T18:42:20Z2009-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-iphone0Loading external .bundles on iPhoneSteve9182009-06-18T04:26:38Z2009-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#10254000Answer by Steve918 for Loading external .bundles on iPhoneSteve9182009-06-22T03:48:19Z2009-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#10108250Answer by Steve918 for Realtime browser based gameSteve9182009-06-18T04:53:21Z2009-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-project1linking c++ sources in iPhone project Steve9182009-05-31T04:48:35Z2009-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-dependencies3Static libraries, linking and dependenciesSteve9182009-06-12T07:18:27Z2009-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#9854090Answer by Steve918 for How do I convert NSString with Hexvalue to binary char* ?Steve9182009-06-12T07:19:49Z2009-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 < [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-char1How do I convert NSString with Hexvalue to binary char* ?Steve9182009-05-28T02:57:19Z2009-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-openssl0Extracting private key from .cer to .pem with opensslSteve9182009-05-28T22:09:42Z2009-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#9214060Answer by Steve918 for NStimer slow when use CGContextClipToRect in iphone device Steve9182009-05-28T15:16:25Z2009-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-the1How can I listen for didRegisterForRemoteNotificationsWithDeviceToken outside the app delegateSteve9182009-05-26T20:51:45Z2009-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#407351Comment by Steve918 on What's your most controversial programming opinion?Steve9182009-07-19T05:07:57Z2009-07-19T05:07:57ZI would code that works is more valuable than code that looks pretty.http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081509#1081509Comment by Steve918 on osx 'mount' local directorySteve9182009-07-04T05:20:56Z2009-07-04T05:20:56Zyou can <i>not</i> hardlink directories in OSX via 'ln'http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081535#1081535Comment by Steve918 on osx 'mount' local directorySteve9182009-07-04T05:20:21Z2009-07-04T05:20:21Z--bind option is not available on osx.http://stackoverflow.com/questions/931293/linking-c-sources-in-iphone-project/931364#931364Comment by Steve918 on linking c++ sources in iPhone project Steve9182009-05-31T07:15:35Z2009-05-31T07:15:35ZAdding 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#931364Comment by Steve918 on linking c++ sources in iPhone project Steve9182009-05-31T05:25:55Z2009-05-31T05:25:55Zhmm, 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-opensslComment by Steve918 on Extracting private key from .cer to .pem with opensslSteve9182009-05-29T01:05:09Z2009-05-29T01:05:09ZSo 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-charComment by Steve918 on How do I convert NSString with Hexvalue to binary char* ?Steve9182009-05-28T03:35:49Z2009-05-28T03:35:49Zfrom hex back to bytes, sorry.http://stackoverflow.com/questions/912701/how-can-i-listen-for-didregisterforremotenotificationswithdevicetoken-outside-the/915087#915087Comment by Steve918 on How can I listen for didRegisterForRemoteNotificationsWithDeviceToken outside the app delegateSteve9182009-05-28T00:32:15Z2009-05-28T00:32:15ZI'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.