button.transform=CGAffineTransformRotate(button.transform,M_PI_4); 角度
button.transform=CGAffineTransformTranslate(button.transform, -100,100); 位置
button.transform=CGAffineTransformScale(button.transform,0.5,0.5); 大小
从bundle中取出image图片
NSString *path = [[NSBundle mainBundle] pathForResource:@"imagename" ofType:nil];
UIImage *image = [UIImage imageWithContentsOfFile:path];