摘要:
1.web.xml 的加载顺序是:ServletContext -> context-param -> listener -> filter -> servlet 1、servlet:servlet是一种运行服务器端的java应用程序,具有独立于平台和协议的特性,并且可以动态的生成web页面,它工作 阅读全文
摘要:
[[[NSBundle mainBundle] loadNibNamed:@"NetFailView" owner:self options:nil] lastObject]; 会去调用-(id)initWithCoder:(NSCoder *)aDecoder方法 阅读全文
摘要:
/** * 监听顶部label点击 */- (void)labelClick:(UITapGestureRecognizer *)tap{ // 取出被点击label的索引 NSInteger index = tap.view.tag; // 让底部的内容scrollView滚动到对应位置 CGPo 阅读全文
摘要:
1.navigationBar导航条可以看做是self.navigationController导航控制器的一个属性。 通过self.navigationController.navigationBarHidden或set方法可以隐藏。2.navigationItem的设置,这个属性和navigat... 阅读全文
摘要:
1 app iconSpotlightiOS 5,6base: 29pt, 需要 @1x, @2x, @3x,得出:29 x 29, 58 x 58, 87 x 87iOS 7,8base: 40pt, 需要 @2x, @3x,得出:80 x 80, 120 x 120iPhone AppiOS 5... 阅读全文
摘要:
首先使用支付宝提供的openssl 生成rsa 的公钥 和私钥 。 NSString *privateKey = @"MIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBAMNhV8wFBELkSKN4vEKLwzlY+M9oTVbmvffig7oz/lh... 阅读全文
摘要:
$ gem sources --remove https://rubygems.org///等有反应之后再敲入以下命令$ gem sources -a http://ruby.taobao.org/*** CURRENT SOURCES ***http://ruby.taobao.org/ //出... 阅读全文
摘要:
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(test) userInfo:nil repeats:NO];TimerInterval : 执行之前等待的时间。比如设置成1.0,就代表1秒后执行方... 阅读全文
摘要:
Core Location---定位框架CLLocationManager这个属性必须写成全局的,不然初始化后就释放了。授权NSLocationWhenInUseUsageDescription :当app在前台的时候,才可以获取到定位信息NSLocationAlwaysUsageDescript... 阅读全文
摘要:
ios8发送本地通知,需要先注册本地通知。if ([[UIApplication sharedApplication]currentUserNotificationSettings].types==UIUserNotificationTypeNone) 当前应用的本地通知类型,UIUserNotif... 阅读全文