he conseguido un iphone
Re: he conseguido un iphone
Antonio he mirado lo de llamar a una nib para cargar desde ella un view y tampoco consiguo cargarla .Según lo que he leido por internet parece que el truco esta en llamarla en applicationDidFinishLaunching .
Veo que esta definido este evento en mainapp y que pasa "algo" a harbour , pero no acabo de ver la manera de poder incluir una linea que llame a una nib determinada.¿ quizas pasandosela en un oninit ,aprovechando la llamada a harbour ?
Saludos.
Veo que esta definido este evento en mainapp y que pasa "algo" a harbour , pero no acabo de ver la manera de poder incluir una linea que llame a una nib determinada.¿ quizas pasandosela en un oninit ,aprovechando la llamada a harbour ?
Saludos.
- Daniel Garcia-Gil
- Posts: 2365
- Joined: Wed Nov 02, 2005 11:46 pm
- Location: Isla de Margarita
- Contact:
Re: he conseguido un iphone
pregunto (realmente no he googleado)
desde window se incluye el RES al exe... pero como se hace aqui?
desde window se incluye el RES al exe... pero como se hace aqui?
our best documentation is the source code
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Re: he conseguido un iphone
Aquí creas archivos nib ,equivalentes a una dll
de recursos .
La llamas desde el ejecutable y listo.(tenemos que mirar como llamarlas)
Las nib se meten dentro del directorio
app como cualquier otro archivo.
Sino recuerdo mal una nib puede estar encriptada para que no se pueda abrir
de recursos .
La llamas desde el ejecutable y listo.(tenemos que mirar como llamarlas)
Las nib se meten dentro del directorio
app como cualquier otro archivo.
Sino recuerdo mal una nib puede estar encriptada para que no se pueda abrir
Re: he conseguido un iphone
He conseguido llamar un view colocado en un nib desde una funcion ....
la funcion cuelkga de una accion de un boton en el view principal ...
la funcion cuelkga de una accion de un boton en el view principal ...
Code: Select all
HB_FUNC( LLAMAVIEW )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSArray *topLevelObjs = nil;
topLevelObjs = [[NSBundle mainBundle] loadNibNamed:@"Hola" owner:window options:nil];
if (topLevelObjs == nil)
MsgInfo(@"no encuentra nada");
UIView * control = [ topLevelObjs objectAtIndex : 0 ];
if (control == nil)
MsgInfo(@"no encuentra nada ");
[window addSubview: control ];
}
Re: he conseguido un iphone
Mejor aun :
para el NavigationController
Code: Select all
HB_FUNC( LLAMAVIEW )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSArray *topLevelObjs = nil;
topLevelObjs = [[NSBundle mainBundle] loadNibNamed:@"Hola" owner:window options:nil];
for ( NSObject * obj in topLevelObjs )
{
if ( [obj isKindOfClass:[UIView class]] )
{
return (UIView*)obj;
}
}
return nil ;
}
Code: Select all
HB_FUNC( LLAMANavController )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSArray *topLevelObjs = nil;
topLevelObjs = [[NSBundle mainBundle] loadNibNamed:@"Hola" owner:window options:nil];
for ( NSObject * obj in topLevelObjs )
{
if ( [obj isKindOfClass:[UINavigationController class]] )
{
return (UINavigationController*)obj;
}
}
return nil ;
}
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: he conseguido un iphone
Manuel,
Genial!
Enhorabuena!
Genial!
Enhorabuena!
Re: he conseguido un iphone
El codigo anterior solo me devuelve 1 objeto , cuando realmente tenemos puestos muchos mas controles ... ¿? .
topLevelObjs tiene solo el view .
Saludos.
topLevelObjs tiene solo el view .
Saludos.
Re: he conseguido un iphone
Daniel mirate esto :Daniel Garcia-Gil wrote:pregunto (realmente no he googleado)
desde window se incluye el RES al exe... pero como se hace aqui?
http://developer.apple.com/library/mac/ ... bFile.html
Re: he conseguido un iphone
Avance , Consigo asignar el texto al label mediante su tag y lo mismo al switch . Con el boton casca ( culpa mia probablemente no se hacerlo bien ) .
Saludos.
Saludos.
Code: Select all
HB_FUNC( HOLA )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSArray *topLevelObjs = nil;
topLevelObjs = [[NSBundle mainBundle] loadNibNamed:@"Hola" owner:window options:nil];
UIView * view = [ topLevelObjs objectAtIndex : 0 ];
UILabel *nameLabel = (UILabel*) [view viewWithTag:3];
nameLabel.text = @"Name";
Switch * miswitch = (Switch *) [view viewWithTag:66];
[ miswitch setOn : NO animated : YES ];
[window addSubview: view ];
hb_retnl( ( LONG ) view );
}
Re: he conseguido un iphone
En dos funciones : una coge el view , la otra asigna sus elementos :
Code: Select all
abtn[1]:bAction:={|| yo:=Adios(oWnd:hwnd) , tu:=Micontrol(yo,3), SETLABELFONT(tu,"Arial",50) ,SETLABELTEXT(tu,"LUYEGO")) }
Code: Select all
HB_FUNC( ADIOS )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSArray *topLevelObjs = nil;
topLevelObjs = [[NSBundle mainBundle] loadNibNamed:@"Hola" owner:window options:nil];
UIView * view = [ topLevelObjs objectAtIndex : 0 ];
// UILabel *nameLabel = (UILabel*) [view viewWithTag:3];
// nameLabel.text = @"Name";
// Switch * miswitch = (Switch *) [view viewWithTag:66];
// [ miswitch setOn : NO animated : YES ];
[window addSubview: view ];
hb_retnl( ( LONG ) view );
}
HB_FUNC( MICONTROL )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
;
NSObject * miobj = (NSObject *) [window viewWithTag:hb_parnl( 2 )];
hb_retnl( ( LONG ) miobj );
}
Re: he conseguido un iphone
Primera funcion operativa : recupera un view desde recursos . Todo subido al repositorio nibs.m , tutornibs.prg, y label.prg y view.prg
y metodos para tView y tLabel
Ejemplo funcionando partiendo de tutorbutton :
Code: Select all
HB_FUNC( GETVIEWRESOURCE )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSString * cNib = hb_NSSTRING_par( 2 );
NSArray *topLevelObjs = nil;
topLevelObjs = [[NSBundle mainBundle] loadNibNamed: cNib owner:window options:nil];
UIView * view = [ topLevelObjs objectAtIndex : 0 ];
[window addSubview: view ];
hb_retnl( ( LONG ) view );
}
HB_FUNC( GETCONTROLRESOURCE )
{
UIWindow * window = ( UIWindow * ) hb_parnl( 1 );
NSObject * miobj = (NSObject *) [window viewWithTag:hb_parnl( 2 )];
hb_retnl( ( LONG ) miobj );
}
Code: Select all
METHOD Resources( oWnd, cResource ) CLASS TView
::hWnd = GETVIEWRESOURCE( oWnd:hWnd,cResource )
AAdd( GetAllWin(), Self )
return Self
METHOD Resources( oWnd, idResource ) CLASS TLabel
::hWnd = GetControlResource( oWnd:hWnd,idResource )
return Self
Code: Select all
......
abtn[1]:bAction:={|| llamaview(ownd) }
.....
return nil
Function llamaview(ownd)
local oView:=tView():resources(ownd,"Hola")
local oLabel:=tLabel():resources(oView,3)
oLabel:SETFONT("Helvetica",20)
olabel:setText("SI")
Return nil
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: he conseguido un iphone
Manuel,
Muy bueno, muchas gracias!
Muy bueno, muchas gracias!
- Daniel Garcia-Gil
- Posts: 2365
- Joined: Wed Nov 02, 2005 11:46 pm
- Location: Isla de Margarita
- Contact:
Re: he conseguido un iphone
Manuelmastintin wrote:Daniel mirate esto :Daniel Garcia-Gil wrote:pregunto (realmente no he googleado)
desde window se incluye el RES al exe... pero como se hace aqui?
http://developer.apple.com/library/mac/ ... bFile.html
GRACIAS!!
our best documentation is the source code
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Re: he conseguido un iphone
He subido un monton de pequeñas nuevas funciones que estan aun sin probar al repositorio .
Queda pendiente la implementacion del evento llamado por el evento del NStimer , y probar y limpiar el código .
Yo por hoy lo dejo ....
Un saludo.
Queda pendiente la implementacion del evento llamado por el evento del NStimer , y probar y limpiar el código .
Yo por hoy lo dejo ....
Un saludo.
Re: he conseguido un iphone
Setbagenumber funcionando :
IMAGETOROUNDIMAGE funcionando .
IMAGEREFLESFROMIMAGEVIEW funcionando:
IMAGETOROUNDIMAGE funcionando .
IMAGEREFLESFROMIMAGEVIEW funcionando: