Preguntas etiquetadas con objective-c

192
Objetivo-C: BOOL vs bool

Vi el "nuevo tipo" BOOL ( YES, NO). Leí que este tipo es casi como un char. Para probar lo hice: NSLog(@"Size of BOOL %d", sizeof(BOOL)); NSLog(@"Size of bool %d", sizeof(bool)); Es bueno ver que ambos registros muestran "1" (a veces en C ++ bool es un int y su tamaño es 4) ¿Entonces me...

188
Cambio dinámico del tamaño de fuente de UILabel

Actualmente tengo un UILabel: factLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 100, 280, 100)]; factLabel.text = @"some text some text some text some text"; factLabel.backgroundColor = [UIColor clearColor]; factLabel.lineBreakMode = UILineBreakModeWordWrap; factLabel.numberOfLines =...