下载地址:http://developer.android.com/sdk/index.html#Other ①如何建立一个工程: 直接选择第一个,我们开发的是移动设备,这里是设置最低版本的sdk 下一步:这里提供格式各样的Activity形式,有侧滑的,自定义导航...
分类:
移动开发 时间:
2015-05-17 10:54:47
阅读次数:
355
UIBarButtonItem * item = [UIBarButtonItem appearance];
UIImage* image = [UIImage imageNamed:@"back_icon"];
[item setBackButtonBackgroundImage:[image resizableImageWithCapInsets:UIE...
分类:
移动开发 时间:
2015-04-17 15:47:31
阅读次数:
136
UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 150, 45)]; [tools setTintColor:[self.navigationController.navigationBar tintColo....
分类:
其他好文 时间:
2015-04-10 15:03:15
阅读次数:
190
先上一个实例截图,增强阅读以下博文的兴趣:
功能区是新的 Microsoft Office Fluent 用户界面的一个组件,它是一个横跨程序窗口顶部的条形带,其中包含多组命令。Office Fluent 用户界面是 Microsoft Office Access 2007 中存放各个命令的单一位置,同时也是 Access 早期版本中的菜单和工具栏的主要替代部分。...
分类:
数据库 时间:
2015-04-09 12:04:35
阅读次数:
297
交互动画切换动画Swiftiosios7目录(?)[-]最终效果预览自定义导航栏的PushPop动画自定义Modal的PresentDismiss动画自定义导航栏的交互式动画使用UIPercentDrivenInteractiveTransition自定义交互控制器最终效果UPDATED在iOS7之...
分类:
移动开发 时间:
2015-03-28 12:55:42
阅读次数:
176
自定义导航栏- (void)addTabBarButtonWithNormalImageName:(NSString*)norName andDisableImageName:(NSString*)disName{ // 3.1创建按钮 LKTabBarBtn*btn = [[LKTabBarBtn...
分类:
其他好文 时间:
2015-03-18 12:05:07
阅读次数:
141
本文只是把我看到的关于自定义导航栏的一些资料搜集了一下
ios7 之后,默认样式的状态栏和导航栏是连在一起的,但是实际上导航栏的位置和大小是和之前系统版本一样的,依然是贴在状态栏下面,依然是高44px;之所以用户看来它们是连在一起,这是因为UINavigationBar里面的_UINavigationBarBackground定位在y方向-20px的位置,然后高度增加到64px,这样就可以同时...
分类:
其他好文 时间:
2015-03-09 17:41:04
阅读次数:
19967
UIBarButtonItem *left = [[UIBarButtonItem alloc] initWithTitle:@"返回3" style:UIBarButtonItemStyleDone target:self action:@selector(onBack:)]; self.n...
分类:
其他好文 时间:
2015-03-06 11:16:26
阅读次数:
106
自定义标题栏按钮@implementation SNTitleButton- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { //图片居中 sel...
分类:
其他好文 时间:
2015-03-01 23:47:19
阅读次数:
183