码迷,mamicode.com
首页 >  
搜索关键字:leftbutton    ( 25个结果
一个消除if语句的例子
// 一个按钮点击事件,判断点击按钮是那一个显示出他的信息- (IBAction)buttonPressed:(id)sender { if (sender == self.leftButton) { NSLog(@"%@", self.leftButton.currentTit...
分类:其他好文   时间:2014-07-16 18:19:06    阅读次数:167
IOS 改变Navigation的返回按钮
两个办法:1,手动为每一个UIViewController添加navigationItem的leftButton的设置代码2,为UINavigationController实现delegate,在pop和push的时候改变当前和上一页的navigationItem.title以下是封装的一些基础方法...
分类:移动开发   时间:2014-07-05 20:30:07    阅读次数:337
ios7 UIBarButtonItem 默认蓝色
[self.navigationItem setLeftBarButtonItem:leftButton]; 这样设置在ios7上按钮默认是蓝色 解决方法: leftButton.tintColor = [UIColor whiteColor];...
分类:移动开发   时间:2014-06-18 07:07:37    阅读次数:888
导航视图栏左右键自定义
//创建按钮初始化UIButton*leftButton=[[UIButtonalloc]initWithFrame:CGRectMake(0,0,60,24)];//添加返回方法[leftButtonaddTarget:selfaction:@selector(backMainViewController)forControlEvents:UIControlEventTouchUpInside];//设置字体颜色,状态[leftButtonsetTitleColor..
分类:其他好文   时间:2014-05-15 00:36:08    阅读次数:320
Qt无边框,可移动窗口
QPoint dragPosition;void MainWindow::mousePressEvent(QMouseEvent *event){if(event->button()==Qt::LeftButton){dragPosition=event->globalPos()-frameGeom...
分类:移动开发   时间:2014-05-01 04:14:18    阅读次数:464
25条   上一页 1 2 3
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!