vertical top texto left horizontal centrar alineacion align iphone vertical-alignment

iphone - texto - swift label text top alignment



UITextField AlineaciĆ³n vertical (1)

Debería subclasificar un UITextField, y anular los siguientes métodos:

- (CGRect) textRectForBounds: (CGRect) bounds { CGRect origValue = [super textRectForBounds: bounds]; /* Just a sample offset */ return CGRectOffset(origValue, 0.0f, 4.0f); } - (CGRect) editingRectForBounds: (CGRect) bounds { CGRect origValue = [super textRectForBounds: bounds]; /* Just a sample offset */ return CGRectOffset(origValue, 0.0f, 4.0f); }

¿Hay una manera de alinear verticalmente el texto en un UITextField medio camino entre UIControlContentVerticalAlignmentCenter y UIControlContentVerticalAlignmentBottom o tengo que ir con uno de esos?