Estoy tratando de crear una cadena atribuida con un tachado, sin embargo, esta simple tarea parece ser más difícil de entender de lo que esperaba. Esto es lo que tengo actualmente (que no funciona). ¡Gracias por la ayuda!NSAttributedString con tachado
NSAttributedString *theTitle = [[[NSAttributedString alloc] initWithString:@"strikethrough text" attributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSColor whiteColor], NSForegroundColorAttributeName, NSUnderlinePatternSolid, NSStrikethroughStyleAttributeName, nil]] autorelease];
Funcionó perfectamente ... gracias. – ambientdiscourse
Esto fue muy útil. ¡Gracias! De nota, le falta un corchete de cierre para cerrar el mensaje 'numberWithInteger:' después de 'NSUnderlinePatternSolid | NSUnderlineStyleSingle' y antes ', NSStrikethroughStyleAttributeName'. – morgant