tags:

views:

20

answers:

1

how to have a string of ___DATE___ for compile date version in an application

A: 

okay found it

__DATE__

with less underscore.

[NSString stringWithFormat:@"%s", __DATE__]

and then you have your compile date version.

CiNN