Nos falta el tema de las plantillas y la sintaxis que han cambiado en xcode 4.1 ... Si alguien puede aportar algo sobre el tema a nivel de localizacion de archivos o demas se lo agradeceremos . ![]()
Saludos.
Nos falta el tema de las plantillas y la sintaxis que han cambiado en xcode 4.1 ... Si alguien puede aportar algo sobre el tema a nivel de localizacion de archivos o demas se lo agradeceremos . ![]()
Saludos.
Manuel,
Que modificaciones has hecho en los ficheros .m que crea xcode ?
Desde donde estas llamando a hb_vmInit( TRUE ); ?
Como solucionas el "provisioning profile" que te pide xcode para instalar en el dispositivo real ?
gracias ![]()
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
hb_vmInit( TRUE );
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
SetWndMain( self.window );
// Add the view controller's view to the window and display.
[self.window addSubview:viewController.view];
[self.window makeKeyAndVisible];
PHB_SYMB symMain = hb_dynsymSymbol( hb_dynsymFindName( "MAIN" ) );
// app = self;
hb_vmPushSymbol( symMain );
hb_vmPushNil();
hb_vmDo( 0 );
return YES;
}#import <UIKit/UIKit.h>
BOOL hb_vmInit( BOOL );
int main(int argc, char *argv[])
{
// NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// int retVal = UIApplicationMain(argc, argv, nil, nil);
// [pool release];
// return retVal;
hb_vmInit( TRUE );
return 0;
}...
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
// [self.window makeKeyAndVisible];
// SetWndMain( self.window );
return YES;
}
...function Main()
local oWnd := TWindow():New(), oLabel
oLabel = TLabel():New( oWnd, "Hello world!", 120, 100, 100, 50 )
oLabel:SetColor( 255, 255, 255, 255 )
oWnd:bTouchesBegan = { || MsgInfo( Version() ) }
oWnd:Activate()
return nil
procedure HB_GT_TRM
return
Hola,
Me podriais echar una mano ?
Tengo instalado una maquina virtual con OS X 10.4
Intento instalar svn-client para el codigo de xharbour.
sudo apt-get install svn-client
El problema que svn-client no soporta openssl
Alguna recomendacion? otro cliente svn?
Gracias.
Pere.