摘要:
原代码: 效果: 没有显示第一个“动态”viewController。 原因: self.viewControllers中要放UINavigationController所以将 self.viewControllers = [newsVC, discoverVC, nullVC, messageVC 阅读全文
摘要:
错误: Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compl 阅读全文
摘要:
运行过程中App崩溃,报错如标题。 原因: viewController的view没有绑定xib的view。 解决方法: 在File's Owner中将view与viewController的view绑定。 阅读全文
摘要:
http://blog.csdn.net/zeng622peng/article/details/5546384 1、TCP连接 手机能够使用联网功能是因为手机底层实现了TCP/IP协议,可以使手机终端通过无线网络建立TCP连接。TCP协议可以对上层网络提供接口,使上层网络数据的传输建立在“无差别” 阅读全文
摘要:
Stack View会被当成Container View。所以它是一个不会被渲染的UIView子类。它不像其他UIView子类一样,会被渲染到屏幕上。这也意味着设置其backgroundColor属性或重载drawRect:方法都不会产生任何效果。 属性: http://www.jianshu.co 阅读全文
摘要:
Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n. For example:Given n = 13,Return 阅读全文
摘要:
231. Power of Two Given an integer, write a function to determine if it is a power of two. 342. Power of Four Given an integer (signed 32 bits), write 阅读全文
摘要:
判断两个字符串相同要用isEqualToString函数,只用“==”判断,结果会错误。 阅读全文