内置服务1、$timeout2、$watch(obj,fun)fun(newVal,oldVal,scope) //newVal是新改变的值,oldVal是旧值内置函数:1、dateFilter(time,format)//参数time是时间,format是格式化
分类:
Web程序 时间:
2014-07-16 21:15:16
阅读次数:
186
iOS的应用程序的生命周期,还有程序是运行在前台还是后台,应用程序各个状态的变换,这些对于开发者来说都是很重要的。 iOS系统的资源是有限的,应用程序在前台和在后台的状态是不一样的。在后台时,程序会受到系统的很多限制,这样可以提高电池的使用和用户体验。//开发app,我们要遵循apple公司的一些指...
分类:
移动开发 时间:
2014-07-16 21:08:02
阅读次数:
228
参考:http://blog.csdn.net/mad1989/article/details/8167529(xcode APP 打包以及提交apple审核详细流程(新版本更新提交审核))http://www.ttlsa.com/dev/how-to-publish-iosapp-to-appst...
分类:
移动开发 时间:
2014-07-16 20:44:13
阅读次数:
275
主要代码//// ViewController.m// Cal-0710//// Created by apple on 14-7-10.// Copyright (c) 2014年 戴维营教育. All rights reserved.//#import "ViewController.h"@in...
分类:
其他好文 时间:
2014-07-16 20:42:40
阅读次数:
193
//// ViewController.m// calculator//// Created by apple on 14-7-10.// Copyright (c) 2014年 apple. All rights reserved.//#import "ViewController.h"#impo...
分类:
其他好文 时间:
2014-07-16 20:32:28
阅读次数:
211
1、"std::ios_base::Init::~Init()", referenced from答1: 如果出现这样的编译问题,是需要再加进libstdc++.dylib和libstdc++.6.dylib(为6.1使用)2、apple Mach-o Linker error答2: 通常是因为co...
分类:
移动开发 时间:
2014-07-16 19:14:54
阅读次数:
222
这些年一直在java/web/android方面折腾,去年最终换成了apple的设备,本想就開始折腾iOS,却始终没能进入状态。从今天開始,本人宣布:正式进入iOS/xcode 5的编程学习中,也希望大家共同进步。补充一下:环顾四周,到我这个年龄还能在coding中找到快乐的人好像已经不多了,你呢?...
分类:
移动开发 时间:
2014-07-15 08:45:54
阅读次数:
273
每个iOS应用都有自己的应用沙盒(应用沙盒就是文件系统目录),与其他文件系统隔离。应用必须待在自己的沙盒里,其他应用不能访问该沙盒应用沙盒的文件系统目录,如下图所示(假设应用的名称叫network)模拟器应用沙盒的根路径在: (apple是用户名, 7.1是模拟器版本)/Users/apple/Li...
分类:
移动开发 时间:
2014-07-13 21:20:29
阅读次数:
219
首先考虑一个具有几个构造函数的MyClass类。假设我们决定在这个类的私有部分添加一个新的数据成员,称为int_data_:
class MyClass
{
public:
MyClass()
: int_data_(0)
{}
explicit MyClass(const Apple& apple)
: int_data_(0)
{}
MyClass(const stri...
分类:
其他好文 时间:
2014-07-13 16:39:59
阅读次数:
184
The Swift Programming Language 中文版,精简提炼,语法快速参考...
分类:
移动开发 时间:
2014-07-13 16:04:11
阅读次数:
304