摘要:
- (void)viewDidLoad{ [super viewDidLoad]; //加载窗口的时候把从文件里读出用户名。 NSString *filePath = [self documentsPath:@"user.txt"]; //读出文件存到数组username中 NSArray *username = [NSArray arrayWithContentsOfFile:filePath]; self.TXF1.text = [username objectAtIndex:0]; self.Txtpwd.text = [username object... 阅读全文
摘要:
int i; int n = 0; //新建一个视图类对象并设置它的大小 UIScrollView *newview =[[UIScrollView alloc]init]; //依次为它的x y位置,长和宽 newview.frame =CGRectMake(0, 0, 300, 400); //把这个对象加到view中去。显示出来 [self.view addSubview:newview]; //添加10个Button for(i =0; i<10;i++) { //新建一个button对象 button还有一... 阅读全文