上一页 1 ··· 7 8 9 10 11 12 下一页
/** 隐藏 返回键 的做法,将title置为空 */ self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@" " style:UIBarButtonItemStylePlain targ... Read More
posted @ 2016-01-27 13:53 偶阵雨ss33 Views(321) Comments(0) Diggs(0)
/** * ios9 之后,Xcode7不推荐使用UIAlertView,改用UIAlertController+UIAlertAction(按钮) */ UIAlertController *alertCtrl = [UIAlertController alertContr... Read More
posted @ 2016-01-26 15:47 偶阵雨ss33 Views(1107) Comments(0) Diggs(0)
1、在appdelegate.m中找到 “application:didFinishLaunchingWithOptions:”方法, 添加以下代码: /** * 前导页 */ if([[[NSUserDefaults standardUserDefaults] objectForKey:@"isE Read More
posted @ 2016-01-26 14:55 偶阵雨ss33 Views(288) Comments(0) Diggs(0)
//字体 textLabel.font = [UIFont systemFontOfSize:13]; CGFloat labelWidth = [UIScreen mainScreen].bounds.size.width-100; // 创建文字 NSString *string =@"... Read More
posted @ 2016-01-25 11:27 偶阵雨ss33 Views(199) Comments(0) Diggs(0)
对于限制UITextView输入的字符数。相信大家在网上见得最多的是实现UITextViewDelegate摘自:方法- (void)viewDidLoad { self.titleText = @"意见反馈"; [super viewDidLoad]; self.textView.dele... Read More
posted @ 2016-01-22 12:01 偶阵雨ss33 Views(291) Comments(0) Diggs(0)
/*** block 反向传值回调*///在第二个控制器中// (1)声明block,在基类中已写好// (2)写好传值方法//(1)typedef void (^ReturnMessageBlock)(id *showText);@property (nonatomic, copy) Retu... Read More
posted @ 2016-01-21 15:05 偶阵雨ss33 Views(298) Comments(0) Diggs(0)
1、NSUserDefault的使用:作用:NSUserDefaults类提供了一个与默认系统进行交互的编程接口。NSUserDefaults对象是用来保存,恢复应用程序相关的偏好设置,配置数据等等。默认系统允许应用程序自定义它的行为去迎合用户的喜好。你可以在程序运行的时候从用户默认的数据库中读取程... Read More
posted @ 2016-01-12 12:36 偶阵雨ss33 Views(215) Comments(0) Diggs(0)
posted @ 2016-01-06 14:23 偶阵雨ss33 Views(253) Comments(0) Diggs(0)
刚新安装了Xcode7 , 据说这个版本可以免费真机调试,于是用了一个新的AppID测试了,发现真的可以免费真机调试了呢!新的appId账号(随便一个苹果手机账号就行),没有支付每年的99美刀,也没有去苹果开发者网站https://developer.apple.com/account/overvi... Read More
posted @ 2016-01-05 16:32 偶阵雨ss33 Views(297) Comments(0) Diggs(0)
摘自:http://www.cnblogs.com/85538649/archive/2012/05/14/2500274.html苹果 开发者账号如下:99美金个人用户99美金团队:审核多了企业资质认证,可以多开发者共享.(如何共享?)这个测试的时候如果有多个人的话,可以拆分多个子账户出来测试,对... Read More
posted @ 2015-12-31 10:18 偶阵雨ss33 Views(737) Comments(0) Diggs(0)
上一页 1 ··· 7 8 9 10 11 12 下一页