上一页 1 2 3 4 5 6 ··· 9 下一页

2011年5月6日

Color的三个问题

摘要: 文/王煜全什么是Color?2011年3月24日正式上线的Color引起了业界的关注。关注点有三:一是它获得了4100万美元投资,并且是在产品尚未发布前;二是公司的团队,带领团队的Bill Nguyen是著名创业家,2009年底将其创办的音乐网站LaLa以8000万美元出售给苹果,公司总裁Peter Pham曾创办过个性化开支节省顾问网站BillShrink,产品主管DJ Patil曾是风靡一时的LinkedIn的首席科学家;三是Color是基于位置信息的,从而形成社区关系的移动化照片分享应用,并支持文本和视频。与多数社区应用不同的是,Color无需注册,没有用户名、密码,不包含个人信息,且没 阅读全文

posted @ 2011-05-06 13:53 GaryGaryGary 阅读(145) 评论(0) 推荐(0)

移动创业风向标:Apple 2010年度移动应用榜单

摘要: 2010-12-10 09:24 | 8171次阅读 | 来源:CSDN综合 【已有0条评论】发表评论关键词:原创,应用 | 作者:刘江 | 收藏这篇资讯pre { white-space: pre-wrap; font-size: 14px; line-height: 24px; }* html pre { word-wrap: break-word; white-space: normal; font-size: 14px; line-height: 24px; }.blkCont p { text-indent: 0pt; }学习和研究优秀的应用成功经验,是产品研发人员的必修功课。而权. 阅读全文

posted @ 2011-05-06 13:43 GaryGaryGary 阅读(218) 评论(0) 推荐(0)

2011年5月5日

为你的应用添加In App Purchase

摘要: 程序开发 2010-05-05 15:37:49 阅读75 评论0 字号:大中小订阅 自从09年10月16日苹果发送给所有开发者的那一封 信,通知了程序内购买将可用于免费应用,我认为这也宣告了LITE版的时代结束。 成千上万的免费版的软件或游戏,将作为限制了功能的完整版免费发售,如果用户觉得有意购买,可以直接解锁完整版的功能或购买附加内容。本文讲阐述如何为你现有的应用或游戏添加程序内购买(In App ... 阅读全文

posted @ 2011-05-05 16:49 GaryGaryGary 阅读(263) 评论(0) 推荐(0)

如何在IPhone程序中集成iAd广告

摘要: (2010-07-14 22:57:07)转载 标签:iphone开发iad移动广告手机广告3.0后向兼容杂谈 分类: 移动开发 iAd的推出无疑给Iphone/IPad的应用程序开发者打开了另一条创收之门,前不久,美国的一位开发者JsonTing开发的将相机闪光灯转为手电筒的应用,集成iAd后在第一天就给他带来了1400$的广告收入。我将在这篇文章中讲讲如何把iAd集成到你的应用程序中。另外也会提到集成中可能遇到的一些问题:如何支持横屏跟竖屏。如何保持与os 3.0的后向兼容。与UI... 阅读全文

posted @ 2011-05-05 16:46 GaryGaryGary 阅读(143) 评论(0) 推荐(0)

Apple Push Notification Service Tutorial

摘要: [iPhone]Apple Push Notification Service Tutorial http://ameyashetti.wordpress.com/2009/07/31/apple-push-notification-service-tutorial/Apple Push Notification Service (APNS) an service user by apple to notify application. The notification can ... 阅读全文

posted @ 2011-05-05 16:20 GaryGaryGary 阅读(230) 评论(0) 推荐(0)

APNS推送通知的流程

摘要: 本文作者为CocoaChina会员marshluca,帖子地址 http://www.cocoachina.com/bbs/read.php?tid-20723.html 1. 将app注册notification里面, 并从APNS上获取测试机的deviceToken. - (BOOL)application:(UIApplication *)application did 本文作者为CocoaChina会员“marshluca”,帖子地址 http://www.cocoachina.com/bbs/read.php?tid-20723.html1. 将app注册notification里面 阅读全文

posted @ 2011-05-05 16:13 GaryGaryGary 阅读(169) 评论(0) 推荐(0)

oAuth調試記錄

摘要: 今天忙乎了一晚,總算把oAuth調通了,網上拉了一段代碼,心想一調試就能通過吧,該代碼頭部如下/*** oAuth Consumer Library** Requires the PHP cURL extension and the MY_Input hack (for CI apps),* which is included in Flame** @package Flame* @subpackage oAuth* @copyright 2009, Jamie Rumbelow* @author Jamie Rumbelow <http://www.jamierumbelow.net& 阅读全文

posted @ 2011-05-05 01:49 GaryGaryGary 阅读(125) 评论(0) 推荐(0)

2011年4月29日

loadView vs viewDidLoad

摘要: The Problem:I was getting a white screen with no data in a UITableView on it in the iPhone simulator.The Solution:I had my initialization code for the array in the the "loadView" method and not the "viewDidLoad" methodExplanation:Don't read self.view in -loadView. Only set it 阅读全文

posted @ 2011-04-29 14:02 GaryGaryGary 阅读(101) 评论(0) 推荐(0)

2011年4月28日

Gradient 并且存为image

摘要: CGGradientRef 的基本步骤1 创建 CGGradient 对象, 提供一个 colorspace,提供一个数组,包含两个以上的颜色, 提供一个数组,包含两个以上的颜色所处位置, 提供一个数组包含前面两个数组中元素个数.2 调用CGContextDrawLinearGradient 或者 CGContextDrawRadialGradient ,提供参数 context, CGGradient 对象, drawing options, 开始和结尾的几何形状 (轴向渐变是两个点,径向渐变是圆心和半径).3 释放CGGradient。示例效果图创建一个图形上下文函数CGContextRe 阅读全文

posted @ 2011-04-28 17:23 GaryGaryGary 阅读(184) 评论(0) 推荐(0)

How to Make Custom Drawn Gradient Backgrounds in a Grouped UITableView with Core Graphics

摘要: In iPhone app design, it is important to find a balance between customization and familiarity. Many times, subtle differences are all you need to make yourself stand out from the crowd. While doing the Ambiance 3.0 redesign, I wanted something to make my list of content a little different than all t 阅读全文

posted @ 2011-04-28 14:41 GaryGaryGary 阅读(189) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 9 下一页

导航