codecamp

TabBarIOS.Item

工具 Edit on GitHub

badge 

位于图标右上角的小的红色的泡沫。

icon Image.propTypes.source

标记的自动以图标。当定义了系统图标时,它将被忽略。

onPress 函数

当标记被选中时,该函数回调,你应该改变组件的状态来设置 selected={true}。

selected 布尔值

它指定了孩子是否可见。如果你看到了一个空白的内容,你很有可能是忘记添加选中项了。

selectedIcon Image.propTypes.source

当标记被选中时,自定义的图标。当定义了系统图标时,它会被忽略。如果为空,那么图标会呈现蓝色。

style View#style

React 样式对象。

systemIcon 枚举('bookmarks','contacts','downloads','favorites','featured','history','more','most-recent','most-viewed','recents','search','top-rated')

项目有一些预定义的系统图标。请注意如果你正在使用它们,标题和选中的图标将被系统图标覆盖。

title 字符串

出现在图标下的文本。当定义了系统图标时,它会被忽略。


iOS 选项卡
文本
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

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; }