Frage

need a little bit help. How I could save a Number from a textfield into a NSInteger variable?

I got this propertys:

@property(weak, nonatomic) IBOutlet UITextField *textFieldPort;
@property NSInteger *portTemp;

And I want something like this:

_portTemp = _textFieldPort.text;

I need the variable to pass through

CFStreamCreatePairWithSocketToHost(NULL, (__bridge CFStringRef)address, port, NULL, &writeStream);

Anyone any idea?

War es hilfreich?

Lösung

It's really easy to do that mate, try this

_portTemp = [_textFieldPort.text integerValue];
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top