dos funciones utiles
Posted: Mon Jul 05, 2010 7:14 am
Te pongo aqui 2 funciones que estoy usando . Ya las puse en un post anterior pero mezcladas con mas cosas y por ello igual quedaron despistadas .Una de ellas es una mejor version de apppath() y la otra sería el equivalente a la funcion path() "de toda la vida"
Saludos.
Saludos.
Code: Select all
HB_FUNC( APPPATH )
{
NSString *buPath = [[NSBundle mainBundle] bundlePath];
hb_retc( [ buPath cStringUsingEncoding : NSASCIIStringEncoding ] );
}
HB_FUNC( PATH )
{
NSString *buPath = [[NSBundle mainBundle] bundlePath];
NSString *secondParentPath = [buPath stringByDeletingLastPathComponent] ;
hb_retc( [ secondParentPath cStringUsingEncoding : NSASCIIStringEncoding ] );
}