iOS.Notification.Bar.Color
Reference:
http://apple.stackexchange.com/questions/44246/what-determines-the-special-color-of-the-status-bar-in-springboard
As far as I have seen, the color is supposed to tell you a little bit about what is going on, or what app is active.
Voice Memos is red, which is the color typically used for 'Recording'.
Calls are green, which is the color of the Phone app's icon and is used in several places in the app (e.g., the Accept button).
AirPlay is blue, which is the color that Apple typically associates with both wireless and music (AirPort and Bluetooth logos are blue, iTunes' icon is blue, the Remote app's icon is blue).
Personal hotspot is blue, which again is the color of 'wireless'.
iOS.Notification.Bar.Color的更多相关文章
- Android - 隐藏最顶端的通知条(Top Notification Bar)
		
隐藏最顶端的通知条(Top Notification Bar/ActionBar) 本文地址: http://blog.csdn.net/caroline_wendy Android中, 视频播放等功 ...
 - ios notification
		
apps can use local or push notifications to let people know when interesting things happen, such as: ...
 - iOS - Notification		通知
		
1.Notification 通知中心实际上是在程序内部提供了消息广播的一种机制,它允许我们在低程度耦合的情况下,满足控制器与一个任意的对象进行通信的目的.每一个 iOS 程序(即每一个进程)都有一个 ...
 - iOS Notification – 远程通知
		
本文讲解iOS的远程通知的基本使用,主要包括远程通知的类型,处理远程通知的场景,以及远程通知相关证书的配置等等. 一.APNs简介 APNs是苹果公司提供的远程通知的服务器,当App处于后台或者没有运 ...
 - iOS Status Bar变换
		
http://www.cocoachina.com/ios/20160718/17020.html 背景 iOS 中经常会有需要在某个界面改变状态栏颜色或者某个界面隐藏状态栏的需求.而改变状态栏颜色和 ...
 - iOS Notification 的使用
		
Notification post notification,notification,notification,notification,notification,n otification ,no ...
 - IOS Notification 通知中心
		
1. 通知中心概述 通知中心实际上是在程序内部提供了消息广播的一种机制.通知中心不能在进程间进行通信.实际上就是一个二传手,把接收到的消息,根据内部的一个消息转发表,来将消息转发给需要的对象. ...
 - 【iOS】Web Color 的 Swift 实现
		
用Swift语言重写Web Color这个类. 这次是用函数实现的,感觉也非常简洁.眼下(2014.6.28) Xcode 6的方法提示还不健全,就仅仅实现了用颜色名字创建颜色的功能. 最新代码&am ...
 - iOS Search bar 输入空字符串也可以搜索
		
Search bar delegate - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar { UITextField *sea ...
 
随机推荐
- web.xml中的load-on-startup
			
1)load-on-startup元素标记容器是否在启动的时候就加载这个servlet(实例化并调用其init()方法). 2)它的值必须是一个整数,表示servlet应该被载入的顺序 2)当值为0或 ...
 - mysql-5.5.20预编译安装
			
1.MYSQL数据库概念 1)MYSQL是一款关系型数据库系统,数据之间有互相联系,互相的关联和调用的. 2)MYSQL数据用于存储:WEB网站用户名和密码等 3)MYSQL存储数据库是通过二维表格形 ...
 - 兴趣点 / 关键点( Interest point/Keypoint )
			
• 不同视角图片之间的映射 • 稳定局部特征点 • 可重复性.显著性 • 抗图片变换 • 外貌变换(亮度.光照) ...
 - MATLAB 提取头发(最大连通域)
			
I= imread('2.jpg'); figure(), imshow(I) R=I(:,:,); G=I(:,:,); B=I(:,:,); [m,n]=size(r); mask=zeros(m ...
 - 10.18号java课后动手动脑
			
问题一结论:类如果提供了一个自定义的构造方法,将导致系统不再提供默认构造方法. 问题二结论:(1)程序运行的结果是100和300,field=200为类的初始化块,可以在类中使用“{”和“}”将语句包 ...
 - day12 装饰器的模版
			
1.什么是装饰器 装饰器指的是为被装饰对象(别人)添加新功能的工具 装饰器本身可以是任意可调用对象 被装饰器对象也可以是任意可调用对象 2.为何要用装饰器 开放封闭原则:指的是对修改封闭,对扩展开放 ...
 - Pandas操作数据库及保存csv
			
数据的保存 import pandas as pd import numpy as np from pandas import Series col_db = [['one',1,2,3,4,np.n ...
 - 【scrapy】其他问题
			
今天看<python爬虫开发与项目实践>的17章写代码的时候发现,一个方法的结尾带了红色波浪线: def _process_booklist_item(self,item): ''' 处理 ...
 - 五:python 对象类型详解二:字符串(上)
			
一:常量字符串 常量字符串用起来相对简单,也许最复杂的事情就是在代码中有如此多的方法来编写它们. eg:单引号:'spam"m' , 双引号: “spa'm” , 三引号:‘’‘... ...
 - cf-Global Round2-E. Pavel and Triangles
			
题目链接:http://codeforces.com/contest/1119/problem/E 题意:给定n个数a[i],分别表示长度为2i-1的木条的数量,问使用这些木条最多能构成多少三角形. ...