Re: Versioning / increasing build number

2010-02-09 Thread Austin Ziegler
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...@halostatue.ca http://www.halostatue.ca/ • http://twitter.com

Re: SQLite mime type?

2009-12-31 Thread Austin Ziegler
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 Ziegler • halosta...@gmail.com • aus...@halostatue.ca http://www.halostatue.ca/ • http://twitter.com/halostatue

Re: retain and don`t retain in accessor methods

2009-11-16 Thread Austin Ziegler
that sets time and calls begin. -austin -- Austin Ziegler • halosta...@gmail.com • aus...@halostatue.ca http://www.halostatue.ca/ • http://twitter.com/halostatue ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

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

2008-11-20 Thread Austin Ziegler
, 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 that will wrap certain kinds of C functions as Objective C

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

2008-11-20 Thread Austin Ziegler
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] ___ Cocoa-dev mailing list (Cocoa

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

2008-11-20 Thread Austin Ziegler
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 baby steps. -austin -- Austin Ziegler * [EMAIL PROTECTED

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

2008-11-19 Thread Austin Ziegler
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 extract the former to use as a proxy function. -- Austin Ziegler * [EMAIL PROTECTED] * http