转载自:http://www.2cto.com/kf/201403/285612.html在去年做过一个小App,其中使用的关键功能就是向用户发送本地通知,可惜当时没有写博客的习惯,所以没有将对应的知识记录下来。最近又遇到了该功能的使用,这一次果断写个博客做下有关UILocalNotificati....
分类:
移动开发 时间:
2014-09-05 21:04:22
阅读次数:
361
iOS支持4种主要的后台处理:应用程序挂起、本地通知、任务特定的后台处理和完成长时间运行的后台任务。
分类:
其他好文 时间:
2014-08-13 18:10:06
阅读次数:
198
public class NotificationTest extends Activity
{
static final int NOTIFICATION_ID = 0x1123;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setC...
分类:
移动开发 时间:
2014-08-05 19:23:00
阅读次数:
202
iOS的本地通知是用到了OC的UILocalNotification对象,加入一个通知很简单,创建一个UILocalNotification对象设置一些对应的参数就行了。// 添加本地通知 1 //增加本地推送 2 NSDate *date = [NSDate dateWithTimeInt...
分类:
移动开发 时间:
2014-07-22 22:56:15
阅读次数:
273
在iOS中有两类信息提示推送方式,一类是远程服务器推送(APNS),还有一类就是本地通知UILocalNotification,今天就简要的记录一下UILocalNotification的使用,详情如下: UILocalNotification *notifity=[[UILocalNotific....
分类:
移动开发 时间:
2014-07-09 20:25:25
阅读次数:
242
// 执行通知一定要退出应用或挂起应用(进入后台)才能收到通知。// 创建本地通知UILocalNotification *notification = [[UILocalNotification alloc] init];// 通知触发时间// 5秒钟之后触发notification.fireDa...
分类:
其他好文 时间:
2014-06-29 00:11:49
阅读次数:
164
//发送通知UILocalNotification*notification=[[UILocalNotificationalloc]init];if(notification!=nil){NSDate*now=[NSDatenew];notification.fireDate=[nowdateByA...
分类:
移动开发 时间:
2014-06-11 22:49:44
阅读次数:
373
iOS的本地通知服务需要使用NSLocalNotification,处理基于时间行为的通知。比如定时通知用户该学习了。使用NSLocalNotification一般需要考虑三个方面:scheduled
time:时间周期,用来指定iOS系统发送通知的日期和时间;notification type:通...
分类:
移动开发 时间:
2014-06-06 22:47:59
阅读次数:
349
1. iOS允许最近本地通知数量最大为多少?
A.64 B.32 C.128 D.16
2. int x = 1; int y = 2; int z = x^y*y; NSLog(@"%d",z); 请问输出结果是多少
A.1 B.2 C.4 D.5
错误 应该选择:D.5
3. 让一个UIView刷新的方法是()
A.setNeedsDisplay B.drawR...
分类:
其他好文 时间:
2014-05-22 07:14:49
阅读次数:
222
在苹果的Mac OSX
和IOS开发的API中有三个不同的"通知",包括:广播通知,本地通知和推送通知。本地通知只是应用所在设备上给用户通知,而推送通知是远程通知,他是由远程服务器推送过来的本节主要是讲的本地通知,虽然本地通知并没有任何的网络通信,但是他在编程方面与后面要介绍的推送通知非常相似。我们...
分类:
移动开发 时间:
2014-04-28 09:30:17
阅读次数:
839