w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
超实用的IOS 9人机界面指南
开始阅读
下载APP,阅读更畅快
教程目录:
(1):UI设计基础
1.1 为iOS而设计(Designing for iOS)
1.2 iOS应用解析 (iOS App Anatomy)
1.3 适应性和布局(Adaptivity and Layout)
1.4 启动与停止(Starting and Stopping)
1.5 导航(Navigation)
1.6 模态情境(Modal Contexts)
1.7 交互性与反馈(Interactivity and Feedback)
1.8 动画(Animation)
1.9 品牌推广(Branding)
1.10 颜色与字体(Color and Typography)
1.11 图标和图形(Icons and Graphics)
1.12 术语和措辞(Terminology and Wording)
1.13 与iOS的整合(Integrating with iOS)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
(1):UI设计基础
1.1 为iOS而设计(Designing for iOS)
1.2 iOS应用解析 (iOS App Anatomy)
1.3 适应性和布局(Adaptivity and Layout)
1.4 启动与停止(Starting and Stopping)
1.5 导航(Navigation)
1.6 模态情境(Modal Contexts)
1.7 交互性与反馈(Interactivity and Feedback)
1.8 动画(Animation)
1.9 品牌推广(Branding)
1.10 颜色与字体(Color and Typography)
1.11 图标和图形(Icons and Graphics)
1.12 术语和措辞(Terminology and Wording)
1.13 与iOS的整合(Integrating with iOS)
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }