码迷,mamicode.com
首页 >  
搜索关键字:btn    ( 2660个结果
给button添加长按手势并侦测到此button
1, 添加手势self.longPressRecognizer = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(handleLongPress:)];[btn addGestureRecogniz...
分类:其他好文   时间:2014-06-30 21:13:14    阅读次数:251
ios禁用多按钮同时点下的bug
如果界面上有多个按钮的话,当你同时点击这几个按钮,会同时出发多个方法,再如果你的action进行了界面跳转,则会出现一个bug,你不信的话,可以试试。。。 之前有想过解决方法,第一种就是设置一个全局变量,当点击的时候将bool值设置为yes,在方法的最后再设置回来,这样的话是一件非常麻烦的事情;后来发现苹果对此已经有相关的解决方案:[btn setExclusiveTouch:YES];...
分类:移动开发   时间:2014-06-28 09:14:48    阅读次数:208
location.href IE6 下不起作用的罪魁祸首
解决问题在btn_publish函数内逻辑最后面加:return false;
分类:其他好文   时间:2014-06-27 18:31:14    阅读次数:140
asp.net文件下载
1 protected void btn_Down(object sender, EventArgs e) 2 { 3 string filePath = Server.MapPath("/TradeLog/" + txtDate.Text.Tr...
分类:Web程序   时间:2014-06-27 17:02:31    阅读次数:226
android中设置控件获得焦点
android中,要使控件获得焦点,需要先setFocus,再requestFocus。以Button为例:btn.setFocusable(true); btn.setFocusableInTouchMode(true); btn.requestFocus(); btn.requestFocusF...
分类:移动开发   时间:2014-06-27 15:36:43    阅读次数:164
MFC 自定义消息
消息机制是windows的典型运行机制,在MFC中有很多的消息如WM_BTN**等。但是在有些情况下我们需要自定义一些消息去做一些我们需要的功能,MFC的向导不能帮助我们做到这一点,我们可以通过添加相应的代码去完成这个功能。SendMessage发送消息后会等对方处理完这个消息后才会继续PostMe...
分类:其他好文   时间:2014-06-26 22:24:02    阅读次数:266
UIView-(frame,center,bounds,tag,transform)用法
frame:表示控件的位置和尺寸(以父控件的左上角为坐标原点(0,0))可以调整控件的大小和位置1 CGRect frame = _btn.frame;2 frame.origin.y -= 50;3 _btn.frame = frame;center:表示控件的中点(以父控件的左上角为坐标原点)可...
分类:其他好文   时间:2014-06-26 15:04:54    阅读次数:189
当inline-block和text-indent遇到IE6,IE7
在实际应用中,考虑到seo,很多button,icon都要用到inline-block和text-indent来处理,例如:Buttoncss我习惯写成这样.btn{display:inline-block; width:100px; height:23px; text-indent:-9999px...
分类:其他好文   时间:2014-06-22 12:56:49    阅读次数:204
UIButton
1 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; 2 CGRect frame = CGRectMake(40, 180, 240, 32); 3 4 btn.frame = frame...
分类:其他好文   时间:2014-06-20 20:39:56    阅读次数:209
20天自制操作系统(八)
移动鼠标并显示鼠标坐标struct MOUSE_DEC { unsigned char buf[3], phase; int x, y, btn;}; enable_mouse(&mdec); for (;;) { io_cli(); //...
分类:其他好文   时间:2014-06-19 06:55:18    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!