Preguntas etiquetadas con objective-c

79
Objective-C: ¿Directiva @class antes de @interface?

¿Cuál es la diferencia entre estas dos declaraciones de clase? No entiendo por qué se utiliza @class aquí. Gracias. @class TestClass; @interface TestClass: UIView { UIImage *image1; UIImage *image2; } y @interface TestClass: UIView { UIImage *image1; UIImage *image2; }...

79
Cómo habilitar ARC para un solo archivo

Quiero traer una sola clase de Objective-C escrita usando ARC en un proyecto antiguo. Internet proporciona muchas referencias sobre cómo habilitar ARC para su proyecto y luego deshabilitarlo para archivos individuales, pero quiero hacer lo contrario. Quiero dejar el proyecto como está, es...

78
Ancho de píxel del texto en un UILabel

Necesito dibujar un UILabel tachado. Por lo tanto, subclasé UILabel y lo implementé de la siguiente manera: @implementation UIStrikedLabel - (void)drawTextInRect:(CGRect)rect{ [super drawTextInRect:rect]; CGContextRef context = UIGraphicsGetCurrentContext();