一,设置导航栏返回按钮的图片和设置导航条上返回按钮旁边的文字(这里写的是让文字不在屏幕上显示) UIImage * image = [UIImage imageNamed:@"返回按钮图片"]; //设置导航条返回按钮的图片 [[UIBarButtonItem appearance] setBack ...
分类:
其他好文 时间:
2016-07-14 18:56:22
阅读次数:
265
1、"自定义"常用快捷键(设置成跟Eclipse差不多) 按照路径:File -> Settings -> Appearance & Behavior -> Keymap -> Copy 一份 Eclipse,命名为 Eclipse_blog.snsgou.com 弱弱的补充说明一下: 新买了一台 ...
分类:
Web程序 时间:
2016-07-14 13:10:13
阅读次数:
278
1、-webkit-tap-highlight-color:rgba(255,255,255,0)可以同时屏蔽ios和android下点击元素时出现的阴影。备注:transparent的属性值在android下无效。 2、-webkit-appearance:none可以同时屏蔽输入框怪异的内阴影, ...
分类:
移动开发 时间:
2016-07-12 15:20:37
阅读次数:
253
自定义TabBarController Push下一级Controller时 会报这样的错误:Unbalanced calls to begin/end appearance transitions for <XXXViewController: 0x7fcea3730650>. 网上的一些回答,都 ...
分类:
移动开发 时间:
2016-07-11 18:41:43
阅读次数:
216
1、-webkit-tap-highlight-color:rgba(255,255,255,0)可以同时屏蔽ios和android下点击元素时出现的阴影。备注:transparent的属性值在android下无效。 2、-webkit-appearance:none可以同时屏蔽输入框怪异的内阴影, ...
分类:
移动开发 时间:
2016-07-11 16:55:15
阅读次数:
183
一、改变状态栏的颜色: (1)、在项目 Info plist 里面添加:View controller-based status bar appearance 设置为 NO (2)、在项目的BaseViewController 里面添加方法: // 设置状态栏 颜色为白色 if (iOS7Later ...
分类:
移动开发 时间:
2016-07-09 22:05:12
阅读次数:
150
在IOS下,input表单以及textarea默认会有个内阴影,一定程度上影响视觉一致,可通过设置下面代码去掉:input,textarea{
-webkit-appearance:none;
}
分类:
移动开发 时间:
2016-07-07 14:34:23
阅读次数:
201
1、ios开发镶嵌 h5页面 存在input 圆角问题(安卓直角) 解决办法 inpput{ -webkit-appearance: none; border-radius: 0px; } 2、ios 镶嵌页面 当原生键盘输入时 底部按钮悬浮 在屏幕中间 解决办法:(ps 显示用的 position ...
分类:
移动开发 时间:
2016-07-07 14:20:43
阅读次数:
194
add_management_page() 在Tools下面创建 add_options_page() 在Settings下面创建 add_theme_page() 在Appearance下面创建 add_users_page() 在Users下面创建 add_dashboard_page() 在D ...
分类:
其他好文 时间:
2016-07-06 21:41:09
阅读次数:
128
1.在info.plist文件中添加 “Status bar is initially hidden”,Boolean设置为“YES”。 2.在info.plist文件中添加“View controller-based status bar appearance”,Boolean设置为“NO”。 注 ...
分类:
其他好文 时间:
2016-07-04 18:47:32
阅读次数:
146