dos funciones utiles

Post Reply
User avatar
mastintin
Posts: 1502
Joined: Thu May 27, 2010 2:06 pm

dos funciones utiles

Post by mastintin »

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.

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 ] );
} 
 
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: dos funciones utiles

Post by Antonio Linares »

Manuel,

Incluidas para el próximo build que publiquemos :-)

Muchas gracias! :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply