摘要: #import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; UIView *myView = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 200, 200)]; [myView setBackgroundColor:[UIColor darkGrayColor]]; [self.view addSubview:my.. 阅读全文
posted @ 2013-04-21 17:46 srand 阅读(229) 评论(0) 推荐(0)
摘要: #include <windows.h>#include <stdio.h>#pragma comment(lib,"Winmm.lib")LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { static TCHAR szAppName[] = TEXT ("HelloWin") 阅读全文
posted @ 2011-10-18 08:16 srand 阅读(165) 评论(0) 推荐(0)