Sportica   Sportica
摘要: //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) 编辑
  Sportica