- 浏览: 902737 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (466)
- iPhone, iOS , Objective-c (155)
- 数据库 (20)
- 设计模式 (5)
- 第三方包管理,cocoapod (2)
- 版本管理, SVN, Subversion, Git (1)
- Google, Android, Java (14)
- Wordpress (1)
- 职业素养 (3)
- 版本管理,git (3)
- 前端小技巧 (2)
- flash (1)
- javascript (5)
- Ruby (0)
- 编程语言 (1)
- 网络常识 (1)
- 找到生活好感觉 (5)
- 产品经理 (1)
- markdown (1)
- 云服务器 (1)
- iPhone (116)
- iOS (116)
- Objective-c (116)
- 学习技巧 (2)
- Google (5)
- Android (6)
- Java (21)
- python (1)
- sqlite (3)
- node.js (2)
- mongodb (2)
- 学习技巧,阅读 (2)
- 软件测试 (3)
- 架构设计 (2)
- 设计 (1)
- Spring framework (3)
- junit (1)
- Linux (2)
- 软件 (1)
- Struts2 (1)
- 版本管理 (3)
- SVN (3)
- Subversion (3)
- Git (3)
- mysql (5)
- quartz (1)
- 无关技术 (1)
- 前端 (1)
- Redis (1)
- 产品管理 (0)
- 计算机常识 (1)
- 计算机科学 (0)
- swift (1)
- 服务器 (2)
- 搜索 (1)
- Scala (1)
- J2EE (1)
- maven (1)
- 前端css (1)
- 英语 (1)
- 消息队列 (1)
- kafka (0)
- apache kafka (4)
- netbeans (1)
- IDE (2)
- 歌词 (1)
- 过滤器实现 (1)
- linux vim vi (1)
- jmeter (1)
- springcloud (1)
最新评论
-
hujingnemo:
不知道为什么打不开
CHM如何改编字体大小 -
weiboyuan:
求答案 weiboyuanios@163.com
iOS软件工程师面试题(高级) -
xueji5368:
这个现在已经广泛使用了嘛!
RoboGuice入门 -
Yao__Shun__Yu:
...
CHM如何改编字体大小 -
353144886:
非常之详细 美女求认识
sqlite数据类型 datetime处理
#import <MessageUI/MessageUI.h> #import <MFMessageComposeViewControllerDelegate,MFMailComposeViewControllerDelegate> -(void)send_SMS{ Class messageClass = (NSClassFromString(@"MFMessageComposeViewController")); if (messageClass != nil) { // Check whether the current device is configured for sending SMS messages if ([messageClass canSendText]) { [self displaySMSComposerSheet]; } else { // feedbackMsg.hidden = NO; // feedbackMsg.text = @"Device not configured to send SMS."; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Device not configured to send SMS." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Call",nil]; //[alert setTag:5]; [alert show]; } } else { // feedbackMsg.hidden = NO; // feedbackMsg.text = @"Device not configured to send SMS."; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Device not configured to send SMS." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Call",nil]; //[alert setTag:5]; [alert show]; } } // Displays an SMS composition interface inside the application. -(void)displaySMSComposerSheet { MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init]; picker.messageComposeDelegate = self; picker.body=@"Testing"; picker.recipients = [NSArray arrayWithObject:@"12345678"]; [self presentModalViewController:picker animated:YES]; } // Dismisses the message composition interface when users tap Cancel or Send. Proceeds to update the // feedback message field with the result of the operation. - (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result { feedbackMsg.hidden = NO; // Notifies users about errors associated with the interface switch (result) { case MessageComposeResultCancelled:{ //feedbackMsg.text = @"Result: SMS sending canceled"; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS sending canceled" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; } break; case MessageComposeResultSent:{ //feedbackMsg.text = @"Result: SMS sent"; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS sent" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; } break; case MessageComposeResultFailed:{ //feedbackMsg.text = @"Result: SMS sending failed"; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS sending failed" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; } break; default: { //feedbackMsg.text = @"Result: SMS not sent"; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS not sent" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; } break; } [self dismissModalViewControllerAnimated:YES]; }
发表评论
-
UIImage变为NSData并进行压缩
2014-05-19 20:23 1924//sdk中提供了方法可以直接调用 UIImage *im ... -
update cocapods
2014-05-17 22:27 798早上更新cocoapod依赖库,发现更新到32.1版本,早先的 ... -
DISPATCH TIMER
2014-05-14 16:12 726/* __block void (^callback) ... -
UITextField左边显示图片
2014-05-13 18:08 1168The overlay view displayed on t ... -
iOS调用系统打电话,发短信功能
2014-05-11 15:48 2082先介绍一种最简单的方法: 调用打电话功能 [[UIAppl ... -
iOS面试题
2014-05-09 16:10 10761.写一下UIButton与UITableView的层级结构 ... -
socket二进制报文
2014-05-09 15:18 1298里面有帧头 字符串UTF-8 中间用0隔开 又一个字符串 ... -
将网站添加到桌面的方法
2014-05-08 14:25 1660<link href="http://www. ... -
iPhone通讯录联系人操作大全
2014-05-07 10:29 14551.需要引入AddressBook.framework框架 2 ... -
sqlite获取最新插入的rowid
2014-05-07 09:59 1516除了 last_insert_rowid select max ... -
号码归属地查询,拨打电话
2014-05-06 15:07 841在程序内调用拨打电话的方法,[[UIApplication s ... -
iOS时间合并
2014-04-28 17:55 1093合并同一时间的课程,同一时间可能有多个课程,比如13:30-1 ... -
vCard通讯录格式说明
2014-04-28 16:47 2554原帖:http://freesoftman.iteye.com ... -
UISearchBar背景色全套解决方案
2014-04-25 09:36 7439os系统升级到7.1后,原来在7.0下显示正常的UISearc ... -
升级XCode5.1.1遇到的奇葩问题NSString,NSObjectRuntime.h报错,Foundation找不到
2014-04-24 11:19 894升级XCode5.1.1遇到的奇葩问题NSString,NSO ... -
将NSString转为NSArray
2014-04-22 16:52 6266// Your JSON data: NSString *c ... -
另外一种NSData转为NSString的方法
2014-04-22 15:40 1211If the data is not null-termina ... -
HTTP,Socket,WebSocket异同
2014-04-18 16:54 1829参考文章: http://abbshr.g ... -
push隐藏UINavigtaionBar和UITabbar
2014-04-17 15:20 1087[self.navigationController setN ... -
数据库SQL
2014-04-11 13:31 9201、说明:创建数据库 CREATE DATABASE data ...
相关推荐
如果设备支持发送短信,我们可以创建一个`MFMessageComposeViewController`实例,并设置收件人、短信正文等信息: ```swift func sendSMS(to recipients: [String], messageBody: String) { if canSendSMS() { ...
在iOS平台上,应用程序通常不能直接实现内部发送短信功能,因为苹果的安全策略限制了第三方应用对系统功能的直接访问,特别是涉及到用户隐私的部分,如短信、电话等。然而,可以通过使用`...
总的来说,实现iOS平台上的短信发送功能涉及导入MessageUI框架、获取权限、创建并配置MFMessageComposeViewController实例,以及处理发送状态的回调。通过这些步骤,开发者可以为用户提供便捷的短信发送功能。
标题提到的“不调用iOS自带发送短信通讯录”实际上是指如何在App内部实现发送短信的功能,而不依赖于系统默认的短信应用,并且可能涉及到获取和选择联系人(即通讯录)的方式。在iOS中,这种自定义行为需要遵循Apple...
在iOS平台上,发送短信功能是通过使用MessageUI框架来实现的。这个框架为开发者提供了方便的接口,使得在应用程序内部可以触发系统自带的短信应用,完成短信的编写和发送。以下将详细介绍如何在iOS开发中实现这个...
在iOS开发中,有时我们需要集成发送短信的功能,以允许用户直接通过我们的应用向指定的电话号码发送信息。这个"iOS--发送短信的demo"就是一个很好的示例,它利用了Apple提供的MessageUI框架来实现这一功能。Message...
在本文中,我们将深入探讨如何使用J2ME来实现SMS短信的接收和发送功能,并基于提供的实例源代码进行学习。 首先,要理解J2ME中的SMS通信,我们需要了解两个关键概念:PDU(Protocol Data Unit)和AT命令。PDU是SMS...
这个"iOS 短信验证demo"就是一个简单的实例,它演示了如何集成短信验证功能到iOS应用中。通常,这个过程涉及以下几个关键知识点: 1. **集成第三方SDK**:在"SMS_SDK1.0.9"这个压缩包中,很可能包含了一个第三方...
在iOS应用程序开发中,有时候我们需要集成发送短信的功能,例如进行短信验证。本篇文章将详细介绍如何在iOS程序中跳转到短信发送界面并实现发送短信的功能。主要涉及的技术点是使用苹果提供的`...
在iOS开发中,实现短信发送功能是常见的需求之一,尤其在一些社交或通知类的应用中。这个名为"iOS 短信发送小demo 可看到通讯录"的项目,提供了调用设备内置短信功能并向通讯录联系人发送短信的能力。在真机上进行...
开发者需要先检查设备是否支持发送短信(通过[MFMessageComposeViewController canSendText]),然后创建MFMessageComposeViewController实例,设置其代理(以监听发送状态),最后展示控制器。用户操作完成后,代理...
在iOS开发中,系统短信发送功能的实现是通过利用苹果提供的特定API来完成的。这个“系统短信发送 Demo”提供了一个实例,展示了如何调用这些接口来触发短信应用,发送预定义的消息。以下是对这个主题的详细解释: 1...
// 短信实例化 MFMessageComposeViewController *messageVc = [[MFMessageComposeViewController alloc] init]; // 目标号码,可以多个 messageVc.recipients = @[@"18888888888", @"15555555555"]; messageVc....
在iOS开发中,MessageUI框架是苹果提供的一种用于创建和发送邮件、短信的应用程序接口。本项目"ios应用源码之使用messageui发送带附加的邮件mailtest 2018127"是一个示例,它展示了如何利用MessageUI框架在iOS应用中...
在iOS平台上,开发一款能够发送短信的应用程序是一项常见的任务,特别是在构建社交、通知或客户服务类应用时。这个名为“ios-发短信.zip”的压缩包很可能包含了一个示例项目,用于演示如何在iOS设备上实现短信功能。...
首先,确保应用有发送邮件的权限,然后创建一个`MFMailComposeViewController`实例,设置收件人、主题和邮件正文。显示控制器后,用户可以在弹出的界面中编辑并发送邮件。记得处理用户取消或发送邮件后的回调。 4. ...
在iOS开发中,发送短信的功能是一项常见的需求,尤其在用户服务、验证代码或者紧急通知等场景下。本Demo,"发送短信的Demo",通过利用苹果提供的MessageUI框架,为开发者提供了一个简单易用的解决方案。MessageUI...