Sportica   Sportica
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 26 下一页
摘要: //首先建立基于UDP的Socket连接 AsyncUdpSocket *updSocket-(void)openUDPServer{ //初始化udp AsyncUdpSocket *tempSocket=[[AsyncUdpSocket alloc] initWithDelegate:self]; self.updSocket=tempSocket; [tempSocket release]; //绑定端口 NSError *error = nil; [self.updSocket bindToPort:4333 error:&error]; ... 阅读全文
posted @ 2012-11-16 17:09 qingjoin 阅读(4556) 评论(0) 推荐(1) 编辑
摘要: float version = [[[UIDevicecurrentDevice] systemVersion] floatValue]; 阅读全文
posted @ 2012-11-16 15:56 qingjoin 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 以下信息从网上收集整理----------------------答案一:1.异步传输通常,异步传输是以字符为传输单位,每个字符都要附加 1 位起始位和 1 位停止位,以标记一个字符的开始和结束,并以此实现数据传输同步。所谓异步传输是指字符与字符(一个字符结束到下一个字符开始)之间的时间间隔是可变的,并不需要严格地限制它们的时间关系。起始位对应于二进制值 0,以低电平表示,占用 1 位宽度。停止位对应于二进制值 1,以高电平表示,占用 1~2 位宽度。一个字符占用 5~8位,具体取决于数据所采用的字符集。例如,电报码字符为 5 位、ASCII码字符为 7 位、汉字码则为8 位。此外,还要附加 阅读全文
posted @ 2012-11-16 15:28 qingjoin 阅读(289) 评论(0) 推荐(0) 编辑
摘要: Undefined symbols for architecture i386: "_compressBound", referenced from: +[NSDataGZipAdditions compressedDataWithBytes:length:] in NSDataGZipAdditions.o "_compress", referenced from: +[NSDataGZipAdditions compressedDataWithBytes:length:] in NSDataGZipAdditions.o "_inflate 阅读全文
posted @ 2012-11-14 10:50 qingjoin 阅读(10075) 评论(0) 推荐(0) 编辑
摘要: NSString *test = [[NSString alloc] initWithString:@"qingjoin"]; 上面一段代码会执行以下两个动作 1 在堆上分配一段内存用来存储@"qingjoin" 比如:内存地址为:0X2222 内容为 "qingjion" 2 在栈上分配一段内存用来存储test 比如:地址为:0Xbbbb 内容自然为0X2222 下面分别看下assign retain copy assign的情况:NSString *newTest = [test assing]; 此时newTest和test完全 阅读全文
posted @ 2012-11-07 13:40 qingjoin 阅读(295) 评论(0) 推荐(0) 编辑
摘要: //1、系统的打电话代码,不返回当前程序: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]]; //2、用UIWebView来实现,打电话结束后会返回当前应用程序: UIWebView *callPhoneWebVw = [[UIWebView alloc] init]; NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"tel://10086" 阅读全文
posted @ 2012-10-31 14:05 qingjoin 阅读(257) 评论(0) 推荐(0) 编辑
摘要: //像这种控件的长按事件有些地方是有系统自带的。但有些时候用起来也不太方便。下面这个可能以后能用到UILongPressGestureRecognizer *longPressReger = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]... 阅读全文
posted @ 2012-10-31 11:15 qingjoin 阅读(17351) 评论(0) 推荐(0) 编辑
摘要: //先要设Cell可编辑-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{ NSLog(@"xxxxfffwefw"); return YES;}//修改编辑按钮文字- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{ return @"删除&q 阅读全文
posted @ 2012-10-31 09:32 qingjoin 阅读(1785) 评论(0) 推荐(0) 编辑
摘要: // 要用到Reachability.h 和Reachability.m两个文件 -(void)checkNetworkRun { NSLog(@"newtwork44"); SchoolInHandAppDelegate *app = [[UIApplication sharedApplication]delegate]; Reachability *r = [Reachability reachabilityWithHostName:@"www.apple.com"]; switch ([r currentReachabilityStatus]) { 阅读全文
posted @ 2012-10-26 16:02 qingjoin 阅读(197) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(){ int a = 0; a = judged("8613775669854"); printf("%d\n",a);}int judged(char *str){ if(strlen(str)!=13 ) //手机号不为13 { return 1; } int i = 0; for(i = 0; i<13; i++) { if(str[i]<'0'|| str[i]>'9') //手机号中有非法字符 { return 2; ... 阅读全文
posted @ 2012-10-23 11:13 qingjoin 阅读(163) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 26 下一页
  Sportica