我在 mini MAC 10.5.8 和 Simulator 3.1 上运行 XCODE 3.1.4 我想为一些远程控制发送一个短的 UDP 字符串并制作了以下代码
基本上它确实在模拟器中编译和运行......但它从不向目标发送任何 UDP。我希望有人能给我一个线索为什么它不起作用
我的 .H 代码
#import <UIKit/UIKit.h>
#import "AsyncUdpSocket.h"
#import "AsyncSocket.h"
@interface ChangeLabelViewController : UIViewController {
IBOutlet UILabel *label ;
AsyncUdpSocket *socket;
}
-(IBAction) ChangeLabel;
-(IBAction) ResetLabel;
@end
我的 .m 代码
#import "ChangeLabelViewController.h"
@implementation ChangeLabelViewController
-(IBAction) ChangeLabel
{
label.text = @"Hello";
}
-(IBAction) ResetLabel
{
label.text = @"Empty";
NSLog(@"%s", __PRETTY_FUNCTION__);
NSString * string = @"Testing iPhone";
NSString * address = @"192.168.1.11";
UInt16 port = 1234;
NSData * data = [string dataUsingEncoding: NSUTF8StringEncoding];
if ([socket sendData:data toHost:address port:port withTimeout:- 1 tag:1]) label.text = @"Send";
// if ([socket sendData:data toHost:address port:port withTimeout:-1 tag:1] == YES) label.text = @"Yes";
// if ([socket sendData:data toHost:address port:port withTimeout:-1 tag:1] == NO) then label.text = @"No";
;
}
@end