需要一点帮助。 如何将文本字段中的数字保存到NSInteger变量中?
我得到了这个属性:
@property(weak, nonatomic) IBOutlet UITextField *textFieldPort;
@property NSInteger *portTemp;
我想要这样的事情:
_portTemp = _textFieldPort.text;
我需要变量来传递
CFStreamCreatePairWithSocketToHost(NULL, (__bridge CFStringRef)address, port, NULL, &writeStream);
有人有任何想法吗?
答案 0 :(得分:0)
这个伙伴真的很容易,试试这个
_portTemp = [_textFieldPort.text integerValue];