// 一个按钮点击事件,判断点击按钮是那一个显示出他的信息- (IBAction)buttonPressed:(id)sender { if (sender == self.leftButton) { NSLog(@"%@", self.leftButton.currentTit...
分类:
其他好文 时间:
2014-07-16 18:19:06
阅读次数:
167
两个办法:1,手动为每一个UIViewController添加navigationItem的leftButton的设置代码2,为UINavigationController实现delegate,在pop和push的时候改变当前和上一页的navigationItem.title以下是封装的一些基础方法...
分类:
移动开发 时间:
2014-07-05 20:30:07
阅读次数:
337
[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
QPoint dragPosition;void
MainWindow::mousePressEvent(QMouseEvent
*event){if(event->button()==Qt::LeftButton){dragPosition=event->globalPos()-frameGeom...
分类:
移动开发 时间:
2014-05-01 04:14:18
阅读次数:
464