Question

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?

Was it helpful?

Solution

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

_portTemp = [_textFieldPort.text integerValue];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top