10 2016 档案

摘要:UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(120, 10, 80, 80)]; view2.backgroundColor = [UIColor redColor]; [self.view addSubview:view2]; 阅读全文
posted @ 2016-10-25 19:02 阳光普照大地 阅读(174) 评论(0) 推荐(0)
摘要:NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"city" ofType:@"plist"]; self.cityArr = [[NSMutableArray alloc] initWithContentsOfFile:p 阅读全文
posted @ 2016-10-24 17:34 阳光普照大地 阅读(946) 评论(0) 推荐(0)
摘要:iOS开发中,怎么打包为ipa格式的软件包以及怎么安装到手机终端上。 (我的开发环境为Xcode6.1.1 )作为个人开发者(当然我的开发者帐号为个人开发者帐号,而不是企业开发者帐号),对于自己来说,我们只需要真机调试就可以将应用安装到自己的手机上;如果你在发布前想给更多的测试或朋友使用你的APP( 阅读全文
posted @ 2016-10-20 18:02 阳光普照大地 阅读(283) 评论(0) 推荐(0)
摘要:AFHTTPSessionManager *manager = [AFHTTPSessionManager manager]; NSString *string = @"admin:100"; NSData *originData = [string dataUsingEncoding:NSASCI 阅读全文
posted @ 2016-10-08 14:31 阳光普照大地 阅读(1145) 评论(0) 推荐(0)