摘要:
//定义一个协议 protocol LogManagerDelegate { func writeLog() } //用户登录类 class UserController { var delegate : LogManagerDelegate? func login() { //查看是否有委托,然后 阅读全文
摘要:
解决方法: 阅读全文
摘要:
PHP include 和 require 语句通过 include 或 require 语句,可以将 PHP 文件的内容插入另一个 PHP 文件(在服务器执行它之前)。include 和 require 语句是相同的,除了错误处理方面:require 会生成致命错误(E_COMPILE_ERROR... 阅读全文
摘要:
1、打开eclipse 偏好设置:command + , 2、General ——>Content Types——>Text——>Java SourceFile 3、将编码设置为GBK(我也想设置为GB 18030,但eclipse提示我不支持该编码格式。好吧,GBK将就将就)。暂时没有发现问题。4... 阅读全文
摘要:
1.读写性修饰符:readwrite | readonlyreadwrite:表明这个属性是可读可写的,系统为我们创建这个属性的setter和getter方法。readonly:表明这个属性只能读不能写,系统只为我们创建一个getter方法,不会创建setter方法2.setter相关修饰符:ass... 阅读全文
摘要:
我们经常会遇到 项目加入 C或者C++文件的时候 出现 could not build module foundation错误需要加上#ifdef__OBJC__#import#import#import"AppDelegate.h"#endif表示宏内引用的文件确保只被使用Objective-C语... 阅读全文
摘要:
数组 没有 alloc 阅读全文
摘要:
- (void)viewWillAppear:(BOOL)animated{ self.tabBarController.tabBar.hidden = NO;} 阅读全文