Re: Versioning / increasing build number

2010-02-09 Thread Austin Ziegler
using Git, but it's a good basis for making your own incremental versioning system. If you're using SVN, it's fairly easy to look for "svn tag version xcode". http://github.com/halostatue/xcode-git-version -austin -- Austin Ziegler • halosta...@gmail.com • aus...@hal

Re: SQLite mime type?

2009-12-31 Thread Austin Ziegler
fic to your app: application/x-myiphone-app IIRC, most browsers that don't know how deal with an x- treat it as octet-stream, but it gives other programs with more information on application/x-sqlite3 or application/x-myiphone-app a way to deal with it better. -austin -- Austin Zieg

Re: retain and don`t retain in accessor methods

2009-11-16 Thread Austin Ziegler
rved). You may have some code duplication here, but you could minimize some of that with a "- (void)initTimer" method that sets time and calls begin. -austin -- Austin Ziegler • halosta...@gmail.com • aus...@halostatue.ca http://www.halostatue.ca/ • http://twitter.com/halostatue _

Re: Wrapping C functions in Objective C proxy objects: naming convention?

2008-11-20 Thread Austin Ziegler
mul, div, or pow. However, looking at how SOAP clients and servers are implemented using these simple examples is instructive. Trust me; the stuff I am *really* doing is a few orders harder than simple math operations. But as you're doing something new, it's always smart to take

Re: Wrapping C functions in Objective C proxy objects: naming convention?

2008-11-20 Thread Austin Ziegler
at hard; I'm just trying to figure out what the best naming conventions for these generated methods and classes will be. -austin -- Austin Ziegler * [EMAIL PROTECTED] * http://www.halostatue.ca/ * [EMAIL PROTECTED] * http://www.halostatue.ca/feed/ * [EMAIL PROTECTED] __

Re: Wrapping C functions in Objective C proxy objects: naming convention?

2008-11-20 Thread Austin Ziegler
for me automatically, but this is also an intellectual challenge to generate these Objective C wrappers that mimic what the C++ code does.) -austin > Am 20.11.2008 um 06:27 schrieb Austin Ziegler: >> For a project that I'm working on, I have a need to write a code >> generator

Wrapping C functions in Objective C proxy objects: naming convention?

2008-11-19 Thread Austin Ziegler
the names of the parameters, more's the pity. -austin [1] Actually, they're more like this: int soap_call_ns__add(struct soap *soap, const char *soap_endpoint, const char *soap_action, double a, double b, double *result); But there's enough information in there for me to e