UIImage *ima = [UIImage imageNamed:@"1.png"]; for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { ButtonSubview * button...
分类:
其他好文 时间:
2014-11-10 11:25:48
阅读次数:
270
有两个图片新建一个CloseLight类CloseLight.himport<UIKit/UIKit.h>
@interfaceCloseLight:UIViewController
@property(nonatomic,assign)NSIntegertag;
@endCloseLight.m#import"CloseLight.h"
@interfaceCloseLight()
@end
@implementationCloseLight
-(id)initWithNib..
分类:
其他好文 时间:
2014-09-03 11:25:56
阅读次数:
205
在.h中声明属性如下
@property (retain, nonatomic) UIWindow *window;
@property (nonatomic, retain) UIView *aView;
@property (nonatomic, retain) UIButton *button;
在.m中实现如下
@implementation MAYAppDelegate...
分类:
移动开发 时间:
2014-08-24 14:15:12
阅读次数:
273
UIImage *ima = [UIImage imageNamed:@"1.png"];
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
ButtonSubview * button = [ButtonSubview buttonWithType:UIButtonTypeSys...
分类:
其他好文 时间:
2014-08-24 11:40:02
阅读次数:
383
//将灯的图片在视图上布局,5行5列
for (int i = 0; i < 5; i++) {
for (int j = 0 ; j < 5; j++) {
UIButton *lightButton = [UIButton buttonWithType:UIButtonTypeSystem];
lightButton.fr...
分类:
其他好文 时间:
2014-08-24 10:21:02
阅读次数:
170
一, 首先为window创建根视图控制器 在AppDelegate.h文件中-
(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions//为w...
分类:
移动开发 时间:
2014-05-07 20:18:38
阅读次数:
398