糖记 - 为自己,为家人 糖记是一款用于血糖数据记录的app,是我第一款个人app,2015年的目标就是要上线一款自己的app,终于赶在在农历新年之前实现了:)。 糖记的由来 为什么要做糖记这么一个app呢?2015年对于我来说是很特殊的一年,因为这年我当父亲了,都说不当爹不知父母恩。的确,自有自己有了亲身的体会才知道父母的养育是多么的辛苦。虽然父母之恩无以为报,但是如何孝敬父母呢?可能最...
Weekly-Summary
本周完成了糖记的1.0版本的主要工作,完成了打包上传的步骤。等待apple的审核。本周还进行了其他的学习记录. outlets and Action outlets 是一种特殊的OC属性可以用来执行storyboard or nib中的objects,它的keywords是IBOutlet,声明它的表达式为: @property (weak,nonatomic)IBOutlet UIB...
IOS-Deleopment-Summary-4
this Week I have implement the first tab and most of second tab.add some new things to make it feel good. these are the problems I have faced and also found the solution: chart 重复显示。 root cause:...
IOS项目与学习周记
IOS-Summary-20151228 add new controller in the tab application create an tab application add the view controller control - drag to the new view controller choose vie...
IOS-summary-CoreData&Notification
Question1: In method application:handleActionWithIdentifier:forLocalNotification:completionHandler: the completioHandler have to be called in the end. but why is that? what did it do? In the arti...
ios-summary-point
注意: you should alloc init the object, the property just define the pointer,the actual object you should alloc and init why the UI element not needed? because the UI element init when rendering the ...
ios-alert-share
IOS-Summary-Alert-Activiy-Share-web-API-week2 Create an Alert Action In IOS first you should create an AlertController Create an Action Add the Action to the AlertController present the C...
IOS-Development-Summary
1 you should alloc init when using the object in OC,even when you are using the property. e.g: @property(nonatomic) BSRecord *record; you define the property in the viewController h file. the reco...
[译]理解和掌握JavaScript中的this
西安天凉了,冬天要来了。 最近在看javascript的书,之前没用系统的看过js方面的书,虽然也看了网上的不少教程,也一直在用,但是总没有体系的感觉,所以最近在补这方面的课程,下面就是看到的一篇关于this的文章,觉得讲的不错,翻译过来。 JavaScript中的this的keyword对于很多初学者,甚至是有经验的js开发人员来说,有时候会难以理解。这篇文章的目的就是解决这个问题,阅读...
Ionic 项目总结与分享
IONIC 是较为红火的mobile app 开发框架,所以花了点时间研究了一下,一下就是对于具体实施的一些项目中的总结和分享。 app的设计思想 与web不同的是,在app中的设计的思想是要注意数据的cache的,从本质上来讲,app就是原来的desktop上的软件,但是在目前的情况下,所有的app基本上都是有网络请求的,实际上的产品结构师CS的。所以app是client端,那么有cl...