今天做手机短信验证码的功能,不用GCD,简单的NSTimer就可以完成,不知道有没有bug,测试中。。。
1 | #pragma mark - 倒计时 |
在项目中目前是自己写的一个集成倒计时的按钮,这个思路暂时可以行!
> 注:本文首发于 [iHTCboy's blog](http://iHTCboy.com),如若转载,请注来源
Learn something of everything, Learn everything of something.
今天做手机短信验证码的功能,不用GCD,简单的NSTimer就可以完成,不知道有没有bug,测试中。。。
1 | #pragma mark - 倒计时 |
在项目中目前是自己写的一个集成倒计时的按钮,这个思路暂时可以行!
Xcode 提示的报错:** the application could not be verified. **
开发的应用一直真机安装不了,网上查看资料,都是说证书出错,最后在stackoverflow.com 找到原因:
I deleted the app from the device, restarted Xcode, and the app subsequently installed on the device just fine without any error message. Not sure if deleting the app was the fix, or the problem was due to “the phase of the moon”.
就是把手机上安装了的应用删除掉,在安装就行了!
分析:我猜测是因为之前我在另一台电脑上安装了这个应用,调试证书导致的错误?还是,最近升级了OS X 10.10.3 、Xcode 6.3 导致的错误?不得而之了。总之,如果下次遇到这个问题,先删掉原来的应用,如果不行,那考虑其它原因就是证书等问题。
~nice
more >>首先说明,苹果允许用户用一切理由来退款,并且是可以退款成功的.
https://reportaproblem.apple.com
more >>网站是报告最近 90 天购买的 iTunes Store、App Store、iBooks Store 或 Mac App Store 项目相关问题。
选择cell有两个方法,今天搞错了,一直以为cell错乱呢,真是人都有掉坑的时候:
1 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; |
linker command failed with exit code 1 (use -v to see invocation)
网上答案:
1、我以前添加开源的.a文件时也遇到过类似的情况,问题大多主要是出现在Ohter Linker Flags 这个属性,找到Build settings->Linking->Other Linker Flags,将此属性修改成-all_load
2、把Other Linker Flags下的属性全删除了。
3、错误信息中出现了某个类的名字,去原文件中看看#import了哪些第三方库,把这些库挨个注释排除,找到出错的那个库,然后按照官方提供的步骤重新添加一遍。
4、看看是不是有新添加的文件跟之前文件同名
经过多次排查,最后答案是:
出现这种情况很可能是,项目中引入了多个相同的文件。
删除一个就ok!
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true