//设置一个viewview = [[UIView alloc] initWithFrame:CGRectMake(0, 38, 320, 30)];view.backgroundColor = [UIColor lightGrayColor];[self.view addSubview:view]...
分类:
移动开发 时间:
2014-08-01 12:51:11
阅读次数:
254
在我们做开发的过程中经常会遇到在你触发了某个动作之后,需要动态添加一个带动画的UIView,执行完以后就销毁这个UIView#pragma mark 展示最新微博的数目- (void)showNewStatusCount:(int)count{ // 1.创建按钮 UIButton *b...
分类:
其他好文 时间:
2014-07-31 23:13:50
阅读次数:
187
#include "cocos2d.h"#include "cocos-ext.h"USING_NS_CC;USING_NS_CC_EXT;using namespace ui; UIButton *button = UIButton::create(); button->setTouchEna.....
分类:
其他好文 时间:
2014-07-31 20:07:17
阅读次数:
163
假设有按钮rButton的 imageEdgeInsets和contentEdgeInsets可以设置按钮的标题和图片的位置,如下代码,设置标题居右 NSString * rBtnTitle = @"删除"; CGSize size = [rBtnTitle sizeWithAttrib...
分类:
其他好文 时间:
2014-07-31 12:50:16
阅读次数:
438
方法一:
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"查看所有中奖记录"];
NSRange strRange = {0,[str length]};
[str addAttribute:NSUnderlineStyleAttributeName ...
分类:
其他好文 时间:
2014-07-30 20:43:44
阅读次数:
468
#import @interface CXUnderLineButton : UIButton+ (CXUnderLineButton *) underlinedButton;@end#import "CXUnderLineButton.h"@implementation CXUnderLineBu...
分类:
其他好文 时间:
2014-07-29 12:43:06
阅读次数:
214
一、 可以通过代码的方式创建UIButton 1.通用实例化对象方法: UIButton *button = [[UIButton alloc] initWithFrame:rect]; 2.快速实例化对象方法: UIButton *button = [UIButton button...
分类:
其他好文 时间:
2014-07-29 12:30:57
阅读次数:
222
Button setImage设置的图片默认是会拉伸缩放的,如果我想要Aspect Fit的效果,要如何做呢?一开始我想到了用contentMode属性,很可惜不起作用。后来我发现button有一个imageView属性,设置它的contentMode就OK了。代码如下:UIButton *butt...
分类:
移动开发 时间:
2014-07-29 10:58:36
阅读次数:
287
UIImage *yuyinImage = [UIImage imageNamed:@"yuyin.png"]; [soundButton setImage:yuyinImage forState:UIControlStateNormal]; [soundButton setImage...
分类:
其他好文 时间:
2014-07-28 15:21:33
阅读次数:
527
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(50, 50, 150, 50)]; [button setTitle:@"HHH" forState:UIControlStateNormal]; [button s...
分类:
其他好文 时间:
2014-07-28 15:17:03
阅读次数:
320