문제

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?

도움이 되었습니까?

해결책

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

_portTemp = [_textFieldPort.text integerValue];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top