User armahg - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T11:47:25Zhttp://stackoverflow.com/feeds/user/32265http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/780897/how-do-i-find-all-the-property-keys-of-a-kvc-compliant-objective-c-object2How do I find all the property keys of a KVC compliant Objective-C object?armahg2009-04-23T09:10:59Z2009-06-30T19:45:38Z
<p>Hello,</p>
<p>Is there a method that returns all the keys for an object conforming to the NSKeyValueCoding protocol?</p>
<p>Something along the lines of <code>[object getPropertyKeys]</code> that would return an NSArray of NSString objects. It would work for any KVC-compliant object. Does such a method exist? I haven't found anything in searching the Apple docs so far.</p>
<p>Thanks,
G.</p>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/760615#7606150Answer by armahg for How to check if the given string is palindrome?armahg2009-04-17T14:24:50Z2009-04-17T14:24:50Z<p>How come no one has posted a recursive solution yet? hmmm ....</p>
http://stackoverflow.com/questions/551476/modifying-app-config-file-with-visual-studio-extension0Modifying app.config file with Visual Studio Extensionarmahg2009-02-15T19:53:22Z2009-03-22T18:29:49Z
<p>Hello,
I am trying to create a Visual Studio Extension (either Add-In or VSPackage) that will do the following:</p>
<p>1) Find all selected projects in the current solution.
2) Obtain access to each project's app.config or web.config file and modify it.</p>
<p>I have been able to figure out step 1 for both an Add-In and a VSPackage. I haven't managed to figure out a way to do step 2). Does anyone have pointers to a blog / documentation that can help me complete step 2) ? </p>
<p>Also, which extensibility option would you recommend for such a project? An Add-In or a VSPackage?</p>
<p>Thanks,</p>
<p>armahg</p>
http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application11Create a cross platform Windows, Mac OS X applicationarmahg2008-10-31T03:22:56Z2009-02-03T19:24:12Z
<p>Hello,
I would like to build an application that runs on both Windows and Mac OS X. I would also
like it to leverage the best of what the platform it runs on has to offer with regards to Frameworks, API's etc. Is there a way to do this without having to write Objective-C code and then C# code? I've been thinking of C++ as an alternative but I was wondering if there was anything else out there. The app will be GUI based (though I don't know exactly what it will do yet)</p>
<p>-G.</p>
http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/383880#3838802Answer by armahg for Create a cross platform Windows, Mac OS X applicationarmahg2008-12-20T23:33:53Z2008-12-20T23:33:53Z<p>thanks for all your answers. I've been doing some research and playing around with WPF and CAnimation etc. It looks like using a C/C++ model and doing the GUI individually for each platform is the best way to go. Thanks for all your help.</p>
http://stackoverflow.com/questions/245721/what-will-it-take-to-add-objective-c-support-to-the-net-common-language-runtime8What will it take to add Objective-C support to the .NET common language runtime?armahg2008-10-29T03:38:56Z2008-11-09T17:37:09Z
<p>Is it possible for the .NET CLR to support Objective-C? Are there any reasons (either from a legal or implementational) standpoint why this wouldn't be possible?</p>
<p>In the spirit of cross-platform application development, it would be nice to be able to write and run Objective-c applications on Windows machines. At least i think it would.</p>
http://stackoverflow.com/questions/780897/how-do-i-find-all-the-property-keys-of-a-kvc-compliant-objective-c-object/780934#780934Comment by armahg on How do I find all the property keys of a KVC compliant Objective-C object?armahg2009-04-24T04:11:32Z2009-04-24T04:11:32ZVery useful ... thanks!! I already knew that stringWithCString was deprecatedhttp://stackoverflow.com/questions/551476/modifying-app-config-file-with-visual-studio-extension/551501#551501Comment by armahg on Modifying app.config file with Visual Studio Extensionarmahg2009-02-16T18:03:43Z2009-02-16T18:03:43ZHhmm I didn't think of that option. I was hoping there would be an API to do this with kind of like the AppSettings.Get, AppSettings.Set methods. I will try it though. Thanks.