http://d.hatena.ne.jp/hummer/20081213/1229393032
CakePHPやらSimpleTestやらをEclipseのスクリプトバリデータにかけると問題(Probrems)にエラーと警告が山ほど出るのだが、こいつがたまらなくウザイ。
本当に出ているエラーや警告が埋もれて、S/N比的に使い物にならなくなってしまう"問題"の問題を解消する方法がわかったので(以下略さない。
ちなみに以下の手順はPDT2.0-all-in-one + Pleadesでのこと。
1、メニューバーの「プロジェクト」->「プロパティ」 -> 「検証」
2、「プロジェクト固有の設定を可能にする」にチェック
3、下のグリッドが有効になったら「HTML構文バリデータ(PHPファイル用)」の「...」って書いてあるとこをクリック
4、設定画面が開くので、除外グループを追加
5、除外グループが左のツリーに現れるので、選択してから「ルールの追加」ボタンを押す
6、拡張子による判別、フォルダ指定、ファイル指定の3つのパターンがあるが、フォルダ指定で/cake/やら/app/vendors/を追加する。
7、プロジェクトプロパティ画面は一旦閉じる。
8、「プロジェクト」->「クリーン」(再検証のやり方いろいろあるけどね!)で再検証させる。
きれいさっぱり問題が無くなるはず。
ちなみにCakePHP1.2RCだと/app/config/acl.ini.phpもモニョる。ファイル直接指定すると良いです。
.ctp, .thtmlを「HTML構文バリデータ(PHPファイル用)」の対象にしとくのもいいかも?
.htmlファイルとかのエラーの場合は「HTML構文バリデータ」の方にも追加するとおっけーです。
プロジェクト設定で上書きできる状態じゃないと(デフォルトそうなってるけど)無理。
网页浏览总次数
2011年3月30日星期三
symfony的一些常用目录常量
项目的目录结构定义如下:
常量 默认值
SF_APPS_DIR SF_ROOT_DIR/apps
SF_CONFIG_DIR SF_ROOT_DIR/config
SF_CACHE_DIR SF_ROOT_DIR/cache
SF_DATA_DIR SF_ROOT_DIR/data
SF_LIB_DIR SF_ROOT_DIR/lib
SF_LOG_DIR SF_ROOT_DIR/log
SF_PLUGINS_DIR SF_ROOT_DIR/plugins
SF_TEST_DIR SF_ROOT_DIR/test
SF_WEB_DIR SF_ROOT_DIR/web
SF_UPLOAD_DIR SF_WEB_DIR/uploads
应该程序的目录结构定义如下:
常量 默认值
SF_APP_CONFIG_DIR SF_APP_DIR/config
SF_APP_LIB_DIR SF_APP_DIR/lib
SF_APP_MODULE_DIR SF_APP_DIR/modules
SF_APP_TEMPLATE_DIR SF_APP_DIR/templates
SF_APP_I18N_DIR SF_APP_DIR/i18n
应用程序缓存目录结构定义如下:
常量 默认值
SF_APP_BASE_CACHE_DIR SF_CACHE_DIR/APP_NAME
SF_APP_CACHE_DIR SF_CACHE_DIR/APP_NAME/ENV_NAME
SF_TEMPLATE_CACHE_DIR SF_APP_CACHE_DIR/template
SF_I18N_CACHE_DIR SF_APP_CACHE_DIR/i18n
SF_CONFIG_CACHE_DIR SF_APP_CACHE_DIR/config
SF_TEST_CACHE_DIR SF_APP_CACHE_DIR/test
SF_MODULE_CACHE_DIR SF_APP_CACHE_DIR/modules
常量 默认值
SF_APPS_DIR SF_ROOT_DIR/apps
SF_CONFIG_DIR SF_ROOT_DIR/config
SF_CACHE_DIR SF_ROOT_DIR/cache
SF_DATA_DIR SF_ROOT_DIR/data
SF_LIB_DIR SF_ROOT_DIR/lib
SF_LOG_DIR SF_ROOT_DIR/log
SF_PLUGINS_DIR SF_ROOT_DIR/plugins
SF_TEST_DIR SF_ROOT_DIR/test
SF_WEB_DIR SF_ROOT_DIR/web
SF_UPLOAD_DIR SF_WEB_DIR/uploads
应该程序的目录结构定义如下:
常量 默认值
SF_APP_CONFIG_DIR SF_APP_DIR/config
SF_APP_LIB_DIR SF_APP_DIR/lib
SF_APP_MODULE_DIR SF_APP_DIR/modules
SF_APP_TEMPLATE_DIR SF_APP_DIR/templates
SF_APP_I18N_DIR SF_APP_DIR/i18n
应用程序缓存目录结构定义如下:
常量 默认值
SF_APP_BASE_CACHE_DIR SF_CACHE_DIR/APP_NAME
SF_APP_CACHE_DIR SF_CACHE_DIR/APP_NAME/ENV_NAME
SF_TEMPLATE_CACHE_DIR SF_APP_CACHE_DIR/template
SF_I18N_CACHE_DIR SF_APP_CACHE_DIR/i18n
SF_CONFIG_CACHE_DIR SF_APP_CACHE_DIR/config
SF_TEST_CACHE_DIR SF_APP_CACHE_DIR/test
SF_MODULE_CACHE_DIR SF_APP_CACHE_DIR/modules
转---在Windows xp下安装Symfony
在Windows xp下安装Symfony 收藏
1. 安装XAMPP
打开 “c:\XAMPP\apache\bin\php.ini”确认
register_globals = Off
magic_quotes_gpc = Off
short_open_tag = On
我并没有修改这三个选项,因为都已经默认设置好了。
设置环境变量:
我的电脑->右键->属性->高级->环境变量->系统变量
(1)新建:变量名:PHP_HOME , 变量值: c:\XAMPP\php ,确定
(2)修改:双击path ,在变量值后面加上 ;%PHP_HOME% , 确定
2.下载Symfony 最新最稳定的版本 (我下的是1.2)
下载地址: http://www.symfony-project.org/installation
3. 创建目录: c:\> mkdir c:\development\sfprojects\jobeet
4. 进入目录: c:\> cd c:\development\sfprojects\jobeet
5. 在jobeet目录下创建 lib/vendor 目录, 将symfony解压到这个目录下
c:\development\sfprojects\jobeet\lib\vendor\symfony
6. 查看symfony 版本:
C:\development\sfprojects\jobeet> php lib\vendor\symfony\data\bin\symfony -V
结果显示: symfony version 1.2.9
7. 为了避免每次都写一长串名字来调用symfony命令,我们可以将C:\development\sfprojects\jobeet\lib\vendor\symfony\data\bin\ 目录下的symfony.bat文件
拷到C:\development\sfprojects\jobeet目录下, 以后可以直接使用symfony命令
打开 “c:\XAMPP\apache\bin\php.ini”确认
register_globals = Off
magic_quotes_gpc = Off
short_open_tag = On
我并没有修改这三个选项,因为都已经默认设置好了。
设置环境变量:
我的电脑->右键->属性->高级->环境变量->系统变量
(1)新建:变量名:PHP_HOME , 变量值: c:\XAMPP\php ,确定
(2)修改:双击path ,在变量值后面加上 ;%PHP_HOME% , 确定
2.下载Symfony 最新最稳定的版本 (我下的是1.2)
下载地址: http://www.symfony-project.org/installation
3. 创建目录: c:\> mkdir c:\development\sfprojects\jobeet
4. 进入目录: c:\> cd c:\development\sfprojects\jobeet
5. 在jobeet目录下创建 lib/vendor 目录, 将symfony解压到这个目录下
c:\development\sfprojects\jobeet\lib\vendor\symfony
6. 查看symfony 版本:
C:\development\sfprojects\jobeet> php lib\vendor\symfony\data\bin\symfony -V
结果显示: symfony version 1.2.9
7. 为了避免每次都写一长串名字来调用symfony命令,我们可以将C:\development\sfprojects\jobeet\lib\vendor\symfony\data\bin\ 目录下的symfony.bat文件
拷到C:\development\sfprojects\jobeet目录下, 以后可以直接使用symfony命令
2011年3月29日星期二
Oracle 10g em java.lang.Exception: Exception in sending Request :: null
Oracle 10g java.lang.Exception: Exception in sending Request :: null
刚装完 Oracle 10g,然后,进行em后,界面出来了,但报了一个错: java.lang.Exception: Exception in sending Request :: null 很多功能不能用,提示重新登录 |
解决方案:找到下面的文件
$ORACLE_HOME\db_1\$HOSTNAME\sysman\config\emd.properties
其中的agentTZRegion缺省是GMT,改为你所在的时区即可,例如:
agentTZRegion=Asia/Chungking
关于时区的列表参考:10.2.0\db_1\sysman\admin\supportedtzs.lst
然后先停止 dbconsole 使时区设置生效并重启OracleDBConsole:
stop dbconsole
emctl resetTZ agent
emctl config agent getTZ
start dbconsole
强烈建议大家按照上面做的完成后,重新启动电脑!
全卸载Oracle方法
全卸载Oracle方法:
软件环境:
1、Windows XP + Oracle 10g
2、Oracle安装路径为:d:\Oracle
1、如果数据库配置了自动存储管理(ASM),应该先删除聚集同步服务CSS(cluster Synchronization Services).删除CSS服务的方法是在DOS命令行中执行如下命令: localconfig delete
2、在“服务”窗口中停止Oracle的所有服务。
3、在“开始”菜单中依次选择“程序”/“Oracle-OraDb10g_home1"/"Oracle Installation Products”/"Universal Installer",打开Oracle Universal Installer(OUI)窗口
4、单击“卸载产品”按钮,打开“产品清单”窗口,选中要删除的Oracle产品,单击“删除”按钮,打开“确认删除”对话框。
5、在“确认删除”对话框中单击“是”按钮,开始删除选择的Oracle产品。
6、删除自动存储管理(ASM),在DOS命令行中执行如下命令:oracle -delete -asmsid +asm
7、运行regedit命令,打开注册表窗口。删除注册表中与Oracle相关的内容,具体如下:
1、删除HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE目录。
2、删除HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services中所有以oracle或OraWeb为开头的键。
3、删除HKEY_LOCAL_MACHINE/SYSETM/CurrentControlSet/Services/Eventlog/application中所有以oracle开头的键。
4、删除HKEY_CLASSES_ROOT目录下所有以Ora、Oracle、Orcl或EnumOra为前缀的键。
5、删除HKEY_CURRENT_USER/SOFTWARE/Microsoft/windows/CurrentVersion/Explorer/MenuOrder/Start Menu/Programs中所有以oracle 开头的键。
6、删除HKDY_LOCAL_MACHINE/SOFTWARE/ODBC/ODBCINST.INI中除Microsoft ODBC for Oracle注册表键以外的所有含有Oracle的键。
其中有些注册表项可能已经在卸载Oracle产品时被删除。
8、删除环境变量中的PATHT CLASSPATH中包含Oracle的值。
9、删除“开始”/“程序”中所有Oracle的组和图标。
10、删除所有与Oracle相关的目录,包括:
1、c:\Program file\Oracle目录。
2、ORACLE_BASE目录。
3、c:\Documents and Settings\系统用户名、LocalSettings\Temp目录下的临时文件。
软件环境:
1、Windows XP + Oracle 10g
2、Oracle安装路径为:d:\Oracle
1、如果数据库配置了自动存储管理(ASM),应该先删除聚集同步服务CSS(cluster Synchronization Services).删除CSS服务的方法是在DOS命令行中执行如下命令: localconfig delete
2、在“服务”窗口中停止Oracle的所有服务。
3、在“开始”菜单中依次选择“程序”/“Oracle-OraDb10g_home1"/"Oracle Installation Products”/"Universal Installer",打开Oracle Universal Installer(OUI)窗口
4、单击“卸载产品”按钮,打开“产品清单”窗口,选中要删除的Oracle产品,单击“删除”按钮,打开“确认删除”对话框。
5、在“确认删除”对话框中单击“是”按钮,开始删除选择的Oracle产品。
6、删除自动存储管理(ASM),在DOS命令行中执行如下命令:oracle -delete -asmsid +asm
7、运行regedit命令,打开注册表窗口。删除注册表中与Oracle相关的内容,具体如下:
1、删除HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE目录。
2、删除HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services中所有以oracle或OraWeb为开头的键。
3、删除HKEY_LOCAL_MACHINE/SYSETM/CurrentControlSet/Services/Eventlog/application中所有以oracle开头的键。
4、删除HKEY_CLASSES_ROOT目录下所有以Ora、Oracle、Orcl或EnumOra为前缀的键。
5、删除HKEY_CURRENT_USER/SOFTWARE/Microsoft/windows/CurrentVersion/Explorer/MenuOrder/Start Menu/Programs中所有以oracle 开头的键。
6、删除HKDY_LOCAL_MACHINE/SOFTWARE/ODBC/ODBCINST.INI中除Microsoft ODBC for Oracle注册表键以外的所有含有Oracle的键。
其中有些注册表项可能已经在卸载Oracle产品时被删除。
8、删除环境变量中的PATHT CLASSPATH中包含Oracle的值。
9、删除“开始”/“程序”中所有Oracle的组和图标。
10、删除所有与Oracle相关的目录,包括:
1、c:\Program file\Oracle目录。
2、ORACLE_BASE目录。
3、c:\Documents and Settings\系统用户名、LocalSettings\Temp目录下的临时文件。
windows7快速启动栏
在任务栏上右键 -> 工具栏 -> 新建工具栏。
在文件夹里面输入这个路径,然后按回车:
%userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch
在任务栏上空白处右键,把锁定任务栏的勾去掉。然后在 Quick Launch 的位置右键,把显示文本和显示标题的勾全部去掉。
现在任务栏已经解锁。我们可以自由的拖动上面的东西。稍微用点力,需要乾坤大挪移一下。把快速启动栏往左拖到不能再拖的位置。然后把任务栏往右拖,快速启动栏自动就到了最左边。
现在原先的任务栏中还有不少程序。你可以一一将它们去掉。右键点程序图标,选将此程序从任务栏解锁。
最后,把任务栏锁定就全搞定了。
如果看着不那么顺眼,可以右键-开始-属性,勾选使用小图标-确定。
在文件夹里面输入这个路径,然后按回车:
%userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch
在任务栏上空白处右键,把锁定任务栏的勾去掉。然后在 Quick Launch 的位置右键,把显示文本和显示标题的勾全部去掉。
现在任务栏已经解锁。我们可以自由的拖动上面的东西。稍微用点力,需要乾坤大挪移一下。把快速启动栏往左拖到不能再拖的位置。然后把任务栏往右拖,快速启动栏自动就到了最左边。
现在原先的任务栏中还有不少程序。你可以一一将它们去掉。右键点程序图标,选将此程序从任务栏解锁。
最后,把任务栏锁定就全搞定了。
如果看着不那么顺眼,可以右键-开始-属性,勾选使用小图标-确定。
2011年3月27日星期日
symfony 自带一个检查运行环境程序
转载:拿来自测安装程序
symfony中自带了一个检查运行环境的程序, 可以用来检查symfony是否可以在当前环境下正常的运行, 程序路径如下.
/data/bin/check_configuration.php
check_configuration.php是一个独立的php程序, 可以在任何地方独立运行. check_configuration.php 也可以同时运行在web和cli两种模式下.
将check_configuration.php复制到web目录下, 访问http://project/check_configuration.php显示如下
如果返回了语法错误你需要更新一下你的symfony源码, 还有要注意的是很多服务器中web访问和cli执行php使用的是两套php.ini, 所以建议将check_configuration.php单独上传到web目录下在浏览器中进行访问.
check_configuration.php 对运行环境做了以下检查.
必要配置
requires PHP >= 5.2.4
- php版本必须大于5.2.4
php.ini: requires zend.ze1_compatibility_mode set to off
- php.ini中zend.ze1_compatibility_mode 的值为 off
可选配置
PDO is installed
- 需要安装PDO模块
PDO has some drivers installed: mysql, sqlite
- 需要安装PDO的mysql和sqlite驱动
PHP-XML module installed
- 需要安装PHP-XML模块
XSL module installed
- 需要安装XSL模块
can use token_get_all()
- 可以使用token_get_all函数
can use mb_strlen()
- 可以使用mb_strlen()函数, 需要安装mbstring模块
can use iconv()
- 可以使用iconv()函数, 需要安装iconv模块
can use utf8_decode()
- 可以使用utf8_decode()函数
has a PHP accelerator
- 存在一个PHP加速器, symfony推荐使用APC
php.ini: short_open_tag set to off
- php.ini中short_open_tag 的值为 off
php.ini: magic_quotes_gpc set to off
- php.ini中magic_quotes_gpc 的值为 off, 关闭魔法引号
php.ini: register_globals set to off
- php.ini中register_globals 的值为 off
php.ini: session.auto_start set to off
- php.ini中session.auto_start 的值为 off
symfony中自带了一个检查运行环境的程序, 可以用来检查symfony是否可以在当前环境下正常的运行, 程序路径如下.
check_configuration.php是一个独立的php程序, 可以在任何地方独立运行. check_configuration.php 也可以同时运行在web和cli两种模式下.
将check_configuration.php复制到web目录下, 访问http://project/check_configuration.php显示如下
如果返回了语法错误你需要更新一下你的symfony源码, 还有要注意的是很多服务器中web访问和cli执行php使用的是两套php.ini, 所以建议将check_configuration.php单独上传到web目录下在浏览器中进行访问.
check_configuration.php 对运行环境做了以下检查.
必要配置
requires PHP >= 5.2.4
- php版本必须大于5.2.4
php.ini: requires zend.ze1_compatibility_mode set to off
- php.ini中zend.ze1_compatibility_mode 的值为 off
可选配置
PDO is installed
- 需要安装PDO模块
PDO has some drivers installed: mysql, sqlite
- 需要安装PDO的mysql和sqlite驱动
PHP-XML module installed
- 需要安装PHP-XML模块
XSL module installed
- 需要安装XSL模块
can use token_get_all()
- 可以使用token_get_all函数
can use mb_strlen()
- 可以使用mb_strlen()函数, 需要安装mbstring模块
can use iconv()
- 可以使用iconv()函数, 需要安装iconv模块
can use utf8_decode()
- 可以使用utf8_decode()函数
has a PHP accelerator
- 存在一个PHP加速器, symfony推荐使用APC
php.ini: short_open_tag set to off
- php.ini中short_open_tag 的值为 off
php.ini: magic_quotes_gpc set to off
- php.ini中magic_quotes_gpc 的值为 off, 关闭魔法引号
php.ini: register_globals set to off
- php.ini中register_globals 的值为 off
php.ini: session.auto_start set to off
- php.ini中session.auto_start 的值为 off
(转载)Xampp环境apache无法启动(端口未被占用)
xampp解压版本apache不能运行,错误解读。
1、首先要排除是否端口占用?
方法:将 xampp\apache\conf\httpd.conf 用记事本打开,查找默认的80端口,将其改为不大会冲突的其他端口号譬如我改成了8880。
Listen 8880
ServerName localhost:8880
2、查看apache启动报错log
方法:打开xampp\apache\logs下error.log,找出报错的根源所在。
本人今天安装后碰到了如下的问题:xampp控制面板里start apache的时候,running字样显示1秒钟之后就消失了,然后下方的控制台显示
Busy...
Apache started...
而实际上根本就没启动
然后我首先定位error.log,里面的错误描述如下
[Sun Sep 20 20:10:03 2009] [error] Attempt to reload DynaLoader.pm aborted.\nCompilation failed in require at F:/xampp/perl/site/lib/ModPerl/Const.pm line 18.\nBEGIN failed--compilation aborted at F:/xampp/perl/site/lib/ModPerl/Const.pm line 18.\nCompilation failed in require at F:/xampp/perl/site/lib/Apache2/Const.pm line 18.\nBEGIN failed--compilation aborted at F:/xampp/perl/site/lib/Apache2/Const.pm line 18.\nCompilation failed in require at F:/xampp/apache/conf/extra/startup.pl line 9.\nBEGIN failed--compilation aborted at F:/xampp/apache/conf/extra/startup.pl line 9.\nCompilation failed in require at (eval 2) line 1.\n
[Sun Sep 20 20:10:03 2009] [error] Can't load Perl file: F:/xampp/apache/conf/extra/startup.pl for server localhost:8880, exiting...
初步判定为跟Perl的加载有关系,查找了一下原因,结果是跟本机安装的oracle 10g有关;
oracle在系统环境变量里有个PERL5LIB,具体怎么冲突的本人还没搞清楚,希望哪位高人能指点一二。
将系统环境变量里的PERL5LIB环境变量的值修改一下,我在之前加上了下面这段,或者可以备份下直接将其删除...
E:\xampp\perl\lib;E:\xampp\perl\site\lib;C:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;C:\oracle\product\10.2.0\db_1\perl\5.8.3\lib;C:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;C:\oracle\product\10.2.0\db_1\perl\site\5.8.3;C:\oracle\product\10.2.0\db_1\perl\site\5.8.3\lib;C:\oracle\product\10.2.0\db_1\sysman\admin\scripts;
再次启动Apache后成功打开 http://localhost:8880/xampp/
1、首先要排除是否端口占用?
方法:将 xampp\apache\conf\httpd.conf 用记事本打开,查找默认的80端口,将其改为不大会冲突的其他端口号譬如我改成了8880。
Listen 8880
ServerName localhost:8880
2、查看apache启动报错log
方法:打开xampp\apache\logs下error.log,找出报错的根源所在。
本人今天安装后碰到了如下的问题:xampp控制面板里start apache的时候,running字样显示1秒钟之后就消失了,然后下方的控制台显示
Busy...
Apache started...
而实际上根本就没启动
然后我首先定位error.log,里面的错误描述如下
[Sun Sep 20 20:10:03 2009] [error] Attempt to reload DynaLoader.pm aborted.\nCompilation failed in require at F:/xampp/perl/site/lib/ModPerl/Const.pm line 18.\nBEGIN failed--compilation aborted at F:/xampp/perl/site/lib/ModPerl/Const.pm line 18.\nCompilation failed in require at F:/xampp/perl/site/lib/Apache2/Const.pm line 18.\nBEGIN failed--compilation aborted at F:/xampp/perl/site/lib/Apache2/Const.pm line 18.\nCompilation failed in require at F:/xampp/apache/conf/extra/startup.pl line 9.\nBEGIN failed--compilation aborted at F:/xampp/apache/conf/extra/startup.pl line 9.\nCompilation failed in require at (eval 2) line 1.\n
[Sun Sep 20 20:10:03 2009] [error] Can't load Perl file: F:/xampp/apache/conf/extra/startup.pl for server localhost:8880, exiting...
初步判定为跟Perl的加载有关系,查找了一下原因,结果是跟本机安装的oracle 10g有关;
oracle在系统环境变量里有个PERL5LIB,具体怎么冲突的本人还没搞清楚,希望哪位高人能指点一二。
将系统环境变量里的PERL5LIB环境变量的值修改一下,我在之前加上了下面这段,或者可以备份下直接将其删除...
E:\xampp\perl\lib;E:\xampp\perl\site\lib;C:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;C:\oracle\product\10.2.0\db_1\perl\5.8.3\lib;C:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;C:\oracle\product\10.2.0\db_1\perl\site\5.8.3;C:\oracle\product\10.2.0\db_1\perl\site\5.8.3\lib;C:\oracle\product\10.2.0\db_1\sysman\admin\scripts;
再次启动Apache后成功打开 http://localhost:8880/xampp/
2011年3月25日星期五
更改Xcode的缺省公司名
X Xcode
解决方案:
在终端中运行一下命令:
// // TestViewController.m // MultiThread // // Created by Zhengliang Guo on 09-6-7. // Copyright 2009 __MyCompanyName__. All rights reserved. //
在终端中运行一下命令:
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "你的公司名";}'
转-----iPhone开发中内存的合理使用
http://yueding920.blog.163.com/
iPhone 开发过程中,内存的使用至关重要。不但要合理分配使用内存,还要注意内存泄露的问题, 因为内存泄露会导致程序由于内存不足而崩溃。根据个人开发的经验来看,在开发iPhone程序的过程中,关于内存的问题需要注意以下几点:
iPhone 开发过程中,内存的使用至关重要。不但要合理分配使用内存,还要注意内存泄露的问题, 因为内存泄露会导致程序由于内存不足而崩溃。根据个人开发的经验来看,在开发iPhone程序的过程中,关于内存的问题需要注意以下几点:
- 内存分配、释放成对出现
使用 alloc 分配的内存对象需要在用完后 调用release释放 - 注意copy,retain,assign操作符的区别
copy, retain操作符赋值的对象和alloc一样,需要release释放,否则会导致内存泄露
assign 操作符的含义是将对象指向另一对象, 两者指向的是同一内存对象,无需调用release释放 - NSArray, NSDictionary, NSMutableArray, NSMutableDictionary等容器类, 在使用这些容器类的时候要注意, 在添加对象到这些类对象时,容器类会自动调用一次retain,比如
NSString* string = [[NSString alloc] initWithString:@”test string”]; // refCount = 1
NSArray* array = [NSArray array];
[array addObject:string]; // refCount = 2
[string release]; // refCount = 1
这种情况, 即便string已经调用release,但是在加入 array中时已经调用了一次retain,注意refCount的变化 简单介绍一下iPhone 或者说Objective C对对象的管理机制。 OC中采用一种引用计数refCount的方式来管理内存对象,当refCount等于0的时候就会释放对象所占的内存, 操作符alloc,copy, retain都会将refCount加1表示引用计数增加, 而调用release使 refCount自动减1, 当refCount=0时表示该对象已经没有被引用,可以将其释放, 之后该对象便不可用 - 连续重复分配内存的过程最好创建自己的自动释放池 NSAutoreleasePool,通常是在for、while等循环操作过程中,比如
for( int i=0; i < 100; i++ )
{
NSString* str = [[NSString alloc] initWithString:@”some string”];
// 针对str的操作
[str release];
}
在这种情况下,有2点需要注意,首先如果可能,就把str的分配、释放放在for循环外面, 从而减少内存的分配、释放导致程序效率低下,也利于内存回收,如上例应该为
NSString* str = [[NSString alloc] initWithString:@”some string”];
for( int i=0; i < 100; i++ )
{
// 针对str的操作
}
[str release];
如果实际情况复杂,不能像例子中那样抽离出循环外,需要创建自己的内存管理池, 同样适用于需要大量autorelease对象的过程
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
for(int i=0; i < 100; i++ )
{
// actions
}
[pool release];
之所以要这样做,是因为apple处理iPhone的内存管理机制问题, 通常情况下,系统会在需要的时候释放整理所有的autorelease对象,这就是为什么有时候autorelease对象在作用域范围外还有可能是有效的 - 避免不常用对象驻留内存, 桌面开发的tx很多喜欢在程序初始化的时候将某些资源比如小图片加载进内存,从而提高程序运行效率。 但这种方式在iPhone以及其它mobile移动设备开发时需要避免,因为对于这些设备来说,内存永远显得不足(当然普通pc内存也是越大越好:) )。 按照apple的官方说法, Load resources lazily . 就是在需要的时候再从硬盘上读取,而避免常驻内存。
2011年3月24日星期四
iPhone代码片段
1. stringWithFormat 用法:
NSString to NSData:
2. NSDate 用法:
NSDate *today;
Date format用法:
-(NSString *) getDay:(NSDate *) d {
各地时区获取:
获取毫秒时间:
3. NSCalendar用法:
-(NSString *) getWeek:(NSDate *) d {
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
unsigned units = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit;
NSDateComponents *components = [calendar components:units fromDate:d];
[calendar release];
switch ([components weekday]) {
case 2:
return @"Monday";
break;
case 3:
return @"Tuesday";
break;
case 4:
return @"Wednesday";
break;
case 5:
return @"Thursday";
break;
case 6:
return @"Friday";
break;
case 7:
return @"Saturday";
break;
case 1:
return @"Sunday";
break;
default:
return @"No Week";
break;
}
// 用components,我们可以读取其他更多的数据。
}
4. 用Get方式读取网络数据:
5. 多线程NSThread用法 :
//在线程里运行主线程里的方法
6. 定时器NSTimer用法:
7. 用户缺省值NSUserDefaults读取:
8. View之间切换的动态效果设置:
9.NSScrollView 滑动用法:
10. 读取全局的Delegate:
11.键盘处理系列
//set the UIKeyboard to switch to a different text field when you press return
//switch textField to the name of your textfield
[textField becomeFirstResponder];
12. 半透明层的实现:
13. 设置View的圆角:
// 首先应用 #import <QuartzCore/QuartzCore.h>
14. UIWebView显示本地图片(目前有点问题,无法正确显示图片):
[NSString stringWithFormat:@"Hight: %d°%@ Low: %d°%@", [Temp],@"C",[lTemp],@"C"];
NSString to NSData:
NSString* str= @"kilonet";
NSData* data=[str dataUsingEncoding:NSUTF8StringEncoding];2. NSDate 用法:
NSDate *today;
NSDate *tomorrow;
today = [NSDate date];
tomorrow = [NSDate dateWithTimeInterval:(i*24*60*60) sinceDate:today]; //可能有更好的
today = [NSDate date];
tomorrow = [NSDate dateWithTimeInterval:(i*24*60*60) sinceDate:today]; //可能有更好的
Date format用法:
-(NSString *) getDay:(NSDate *) d {
NSString *s ;
NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"YYYY/MM/dd hh:mm:ss"];
s = [format stringFromDate:d];
[format release];
return s;
}
NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"YYYY/MM/dd hh:mm:ss"];
s = [format stringFromDate:d];
[format release];
return s;
}
各地时区获取:
代码
NSDate *nowDate = [NSDate new];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy/MM/dd HH:mm:ss"];
// 根据时区名字获取当前时间,如果该时区不存在,默认获取系统当前时区的时间
// NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:@"Europe/Andorra"];
// [formatter setTimeZone:timeZone];
//获取所有的时区名字
NSArray *array = [NSTimeZone knownTimeZoneNames];
// NSLog(@"array:%@",array);
//for循环
// for(int i=0;i<[array count];i++)
// {
// NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:[array objectAtIndex:i]];
// [formatter setTimeZone:timeZone];
// NSString *locationTime = [formatter stringFromDate:nowDate];
// NSLog(@"时区名字:%@ : 时区当前时间: %@",[array objectAtIndex:i],locationTime);
// //NSLog(@"timezone name is:%@",[array objectAtIndex:i]);
// }
//快速枚举法
for(NSString *timeZoneName in array){
[formatter setTimeZone:[NSTimeZone timeZoneWithName:timeZoneName]];
NSLog(@"%@,%@",timeZoneName,[formatter stringFromDate:nowDate]);
}
[formatter release];
[nowDate release];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy/MM/dd HH:mm:ss"];
// 根据时区名字获取当前时间,如果该时区不存在,默认获取系统当前时区的时间
// NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:@"Europe/Andorra"];
// [formatter setTimeZone:timeZone];
//获取所有的时区名字
NSArray *array = [NSTimeZone knownTimeZoneNames];
// NSLog(@"array:%@",array);
//for循环
// for(int i=0;i<[array count];i++)
// {
// NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:[array objectAtIndex:i]];
// [formatter setTimeZone:timeZone];
// NSString *locationTime = [formatter stringFromDate:nowDate];
// NSLog(@"时区名字:%@ : 时区当前时间: %@",[array objectAtIndex:i],locationTime);
// //NSLog(@"timezone name is:%@",[array objectAtIndex:i]);
// }
//快速枚举法
for(NSString *timeZoneName in array){
[formatter setTimeZone:[NSTimeZone timeZoneWithName:timeZoneName]];
NSLog(@"%@,%@",timeZoneName,[formatter stringFromDate:nowDate]);
}
[formatter release];
[nowDate release];
获取毫秒时间:
代码
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
[dateFormatter setTimeStyle:NSDateFormatterShortStyle];
//[dateFormatter setDateFormat:@"hh:mm:ss"]
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.SSS"];
NSLog(@"Date%@", [dateFormatter stringFromDate:[NSDate date]]);
[dateFormatter release];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
[dateFormatter setTimeStyle:NSDateFormatterShortStyle];
//[dateFormatter setDateFormat:@"hh:mm:ss"]
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.SSS"];
NSLog(@"Date%@", [dateFormatter stringFromDate:[NSDate date]]);
[dateFormatter release];
3. NSCalendar用法:
-(NSString *) getWeek:(NSDate *) d {
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
unsigned units = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit;
NSDateComponents *components = [calendar components:units fromDate:d];
[calendar release];
switch ([components weekday]) {
case 2:
return @"Monday";
break;
case 3:
return @"Tuesday";
break;
case 4:
return @"Wednesday";
break;
case 5:
return @"Thursday";
break;
case 6:
return @"Friday";
break;
case 7:
return @"Saturday";
break;
case 1:
return @"Sunday";
break;
default:
return @"No Week";
break;
}
// 用components,我们可以读取其他更多的数据。
}
4. 用Get方式读取网络数据:
// 将网络数读取为字符串
- (NSString *) getDataByURL:(NSString *) url {
return [[NSString alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]] encoding:NSUTF8StringEncoding];
}
//读取网络图片
- (UIImage *) getImageByURL:(NSString *) url {
return [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]]];
}
- (NSString *) getDataByURL:(NSString *) url {
return [[NSString alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]] encoding:NSUTF8StringEncoding];
}
//读取网络图片
- (UIImage *) getImageByURL:(NSString *) url {
return [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]]];
}
5. 多线程NSThread用法 :
[NSThread detachNewThreadSelector:@selector(scheduleTask) toTarget:self withObject:nil];
-(void) scheduleTask {
//create a pool
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//release the pool;
[pool release];
}
//如果有参数,则这么使用:
[NSThread detachNewThreadSelector:@selector(scheduleTask:) toTarget:self withObject:[NSDate date]];
-(void) scheduleTask:(NSDate *) mdate {
//create a pool
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//release the pool;
[pool release];
}
//注意selector里有冒号。
-(void) scheduleTask {
//create a pool
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//release the pool;
[pool release];
}
//如果有参数,则这么使用:
[NSThread detachNewThreadSelector:@selector(scheduleTask:) toTarget:self withObject:[NSDate date]];
-(void) scheduleTask:(NSDate *) mdate {
//create a pool
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//release the pool;
[pool release];
}
//注意selector里有冒号。
[self performSelectorOnMainThread:@selector(moveToMain) withObject:nil waitUntilDone:FALSE];
6. 定时器NSTimer用法:
代码
定时器停止使用: // 一个可以自动关闭的Alert窗口
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil
message:[@"一个可以自动关闭的Alert窗口"
delegate:nil
cancelButtonTitle:nil //NSLocalizedString(@"OK", @"OK") //取消任何按钮
otherButtonTitles:nil];
//[alert setBounds:CGRectMake(alert.bounds.origin.x, alert.bounds.origin.y, alert.bounds.size.width, alert.bounds.size.height+30.0)];
[alert show];
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
// Adjust the indicator so it is up a few pixels from the bottom of the alert
indicator.center = CGPointMake(alert.bounds.size.width/2, alert.bounds.size.height-40.0);
[indicator startAnimating];
[alert insertSubview:indicator atIndex:0];
[indicator release];
[NSTimer scheduledTimerWithTimeInterval:3.0f
target:self
selector:@selector(dismissAlert:)
userInfo:[NSDictionary dictionaryWithObjectsAndKeys:alert, @"alert", @"testing ", @"key" ,nil] //如果不用传递参数,那么可以将此项设置为nil.
repeats:NO];
NSLog(@"release alert");
[alert release];
-(void) dismissAlert:(NSTimer *)timer{
NSLog(@"release timer");
NSLog([[timer userInfo] objectForKey:@"key"]);
UIAlertView *alert = [[timer userInfo] objectForKey:@"alert"];
[alert dismissWithClickedButtonIndex:0 animated:YES];
}
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil
message:[@"一个可以自动关闭的Alert窗口"
delegate:nil
cancelButtonTitle:nil //NSLocalizedString(@"OK", @"OK") //取消任何按钮
otherButtonTitles:nil];
//[alert setBounds:CGRectMake(alert.bounds.origin.x, alert.bounds.origin.y, alert.bounds.size.width, alert.bounds.size.height+30.0)];
[alert show];
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
// Adjust the indicator so it is up a few pixels from the bottom of the alert
indicator.center = CGPointMake(alert.bounds.size.width/2, alert.bounds.size.height-40.0);
[indicator startAnimating];
[alert insertSubview:indicator atIndex:0];
[indicator release];
[NSTimer scheduledTimerWithTimeInterval:3.0f
target:self
selector:@selector(dismissAlert:)
userInfo:[NSDictionary dictionaryWithObjectsAndKeys:alert, @"alert", @"testing ", @"key" ,nil] //如果不用传递参数,那么可以将此项设置为nil.
repeats:NO];
NSLog(@"release alert");
[alert release];
-(void) dismissAlert:(NSTimer *)timer{
NSLog(@"release timer");
NSLog([[timer userInfo] objectForKey:@"key"]);
UIAlertView *alert = [[timer userInfo] objectForKey:@"alert"];
[alert dismissWithClickedButtonIndex:0 animated:YES];
}
[timer invalidate];
timer = nil;
timer = nil;
7. 用户缺省值NSUserDefaults读取:
//得到用户缺省值
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
//在缺省值中找到AppleLanguages, 返回值是一个数组
NSArray* languages = [defs objectForKey:@"AppleLanguages"];
NSLog(@"all language语言 is %@", languages);
//在得到的数组中的第一个项就是用户的首选语言了
NSLog(@"首选语言 is %@",[languages objectAtIndex:0]);
//get the language & country code
NSLocale *currentLocale = [NSLocale currentLocale];
NSLog(@"Language Code is %@", [currentLocale objectForKey:NSLocaleLanguageCode]);
NSLog(@"Country Code is %@", [currentLocale objectForKey:NSLocaleCountryCode]);
NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];
//在缺省值中找到AppleLanguages, 返回值是一个数组
NSArray* languages = [defs objectForKey:@"AppleLanguages"];
NSLog(@"all language语言 is %@", languages);
//在得到的数组中的第一个项就是用户的首选语言了
NSLog(@"首选语言 is %@",[languages objectAtIndex:0]);
//get the language & country code
NSLocale *currentLocale = [NSLocale currentLocale];
NSLog(@"Language Code is %@", [currentLocale objectForKey:NSLocaleLanguageCode]);
NSLog(@"Country Code is %@", [currentLocale objectForKey:NSLocaleCountryCode]);
8. View之间切换的动态效果设置:
SettingsController *settings = [[SettingsController alloc]initWithNibName:@"SettingsView" bundle:nil];
settings.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; //水平翻转
[self presentModalViewController:settings animated:YES];
[settings release];
settings.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; //水平翻转
[self presentModalViewController:settings animated:YES];
[settings release];
9.NSScrollView 滑动用法:
-(void) scrollViewDidScroll:(UIScrollView *)scrollView{
NSLog(@"正在滑动中...");
}
//用户直接滑动NSScrollView,可以看到滑动条
-(void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
}
// 通过其他控件触发NSScrollView滑动,看不到滑动条
- (void) scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView {
}
NSLog(@"正在滑动中...");
}
//用户直接滑动NSScrollView,可以看到滑动条
-(void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
}
// 通过其他控件触发NSScrollView滑动,看不到滑动条
- (void) scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView {
}
10. 读取全局的Delegate:
KiloNetAppDelegate *appdelegate = (KiloNetAppDelegate *)[[UIApplication sharedApplication] delegate];
//set the UIKeyboard to switch to a different text field when you press return
//switch textField to the name of your textfield
[textField becomeFirstResponder];
12. 半透明层的实现:
半透明层
+(void)showWaiting:(UIView *)parent {
int width = 32, height = 32;
CGRect frame = [parent frame]; //[[UIScreen mainScreen] applicationFrame];
int x = frame.size.width;
int y = frame.size.height;
frame = CGRectMake((x - width) / 2, (y - height) / 2, width, height);
UIActivityIndicatorView* progressInd = [[UIActivityIndicatorView alloc] initWithFrame:frame];
[progressInd startAnimating];
progressInd.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
// frame = CGRectMake((x - 140)/2, (y - height) / 2 + height, 140, 30);// UILabel *waitingLable = [[UILabel alloc] initWithFrame:frame];// waitingLable.text = @"Proccesing...";// waitingLable.textColor = [UIColor whiteColor];// waitingLable.font = [UIFont systemFontOfSize:15];// waitingLable.backgroundColor = [UIColor clearColor];
frame = [parent frame];
UIView *theView = [[UIView alloc] initWithFrame:frame];
theView.backgroundColor = [UIColor blackColor];
theView.alpha = 0.8;
[theView addSubview:progressInd];// [theView addSubview:waitingLable];
[progressInd release];// [waitingLable release];
[theView setTag:9999];
[parent addSubview:theView];
[theView release];
}
+(void)hideWaiting:(UIView *)parent {
[[parent viewWithTag:9999] removeFromSuperview];
}
int width = 32, height = 32;
CGRect frame = [parent frame]; //[[UIScreen mainScreen] applicationFrame];
int x = frame.size.width;
int y = frame.size.height;
frame = CGRectMake((x - width) / 2, (y - height) / 2, width, height);
UIActivityIndicatorView* progressInd = [[UIActivityIndicatorView alloc] initWithFrame:frame];
[progressInd startAnimating];
progressInd.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
// frame = CGRectMake((x - 140)/2, (y - height) / 2 + height, 140, 30);// UILabel *waitingLable = [[UILabel alloc] initWithFrame:frame];// waitingLable.text = @"Proccesing...";// waitingLable.textColor = [UIColor whiteColor];// waitingLable.font = [UIFont systemFontOfSize:15];// waitingLable.backgroundColor = [UIColor clearColor];
frame = [parent frame];
UIView *theView = [[UIView alloc] initWithFrame:frame];
theView.backgroundColor = [UIColor blackColor];
theView.alpha = 0.8;
[theView addSubview:progressInd];// [theView addSubview:waitingLable];
[progressInd release];// [waitingLable release];
[theView setTag:9999];
[parent addSubview:theView];
[theView release];
}
+(void)hideWaiting:(UIView *)parent {
[[parent viewWithTag:9999] removeFromSuperview];
}
13. 设置View的圆角:
// 首先应用 #import <QuartzCore/QuartzCore.h>
view.layer.cornerRadius = 10;
view.layer.masksToBounds = YES;
view.layer.masksToBounds = YES;
14. UIWebView显示本地图片(目前有点问题,无法正确显示图片):
代码
NSString *path = [[NSBundle mainBundle] bundlePath]; NSString *imagePath = [[NSBundle mainBundle] resourcePath];
imagePath = [imagePath stringByReplacingOccurrencesOfString:@"/" withString:@"//"];
imagePath = [imagePath stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSLog(@"fileurl=%@",[NSString stringWithFormat:@"file:/%@//",imagePath]);
//[self loadData:[html dataUsingEncoding:NSUTF8StringEncoding] MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"file:/%@//",imagePath]] ];
[self loadHTMLString:html baseURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"file:/%@//",imagePath] ]];
imagePath = [imagePath stringByReplacingOccurrencesOfString:@"/" withString:@"//"];
imagePath = [imagePath stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSLog(@"fileurl=%@",[NSString stringWithFormat:@"file:/%@//",imagePath]);
//[self loadData:[html dataUsingEncoding:NSUTF8StringEncoding] MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"file:/%@//",imagePath]] ];
[self loadHTMLString:html baseURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"file:/%@//",imagePath] ]];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[UIWebView loadHTMLString:html baseURL:baseURL];
//这段代码可以正确显示图片。
1. 随机数:
2. 视频播放:
3. 启动界面显示:
iPhone软件启动后的第一屏图片是非常重要的往往就是loading载入中的意思。设置它说来也简单,但是却无比重要
4. iPhone的系统目录:
5. 状态栏显示Indicator:
6.app Icon显示数字:
7.sqlite保存地址:
8.Application退出:exit(0);
9. AlertView,ActionSheet的cancelButton点击事件:
10.给Window设置全局的背景图片:
11. UITextField文本框显示及对键盘的控制:
12.UITextField文本框前面空白宽度设置以及后面组合按钮设置:
13. UIScrollView 设置滑动不超出本身范围:
[fcScrollView setBounces:NO];
14. 遍历View里面所有的Subview:
14. 在drawRect里画文字:
UIFont * f = [UIFont systemFontOfSize:20];
15. NSArray查找是否存在对象时用indexOfObject,如果不存在则返回为NSNotFound.
16. NString与NSArray之间相互转换:
17. TabController随意切换tab bar:
[self.tabBarController setSelectedIndex:tabIndex];
或者 self.tabBarController.selectedIndex = tabIndex;
或者实现下面的delegate来扑捉tab bar的事件:
19. UIWebView加载时白色显示问题解决以及字体统一设置:
uiWebView.opaque = NO;
代码
20.计算字符串长度:
CGFloat w = [title sizeWithFont:[UIFont fontWithName:@"Arial" size:18]].width;
21. iTunesLink should be your applications link
NSString *iTunesLink = @"http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=xxxxxx&mt=8";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
22.时间转换NSString & NSDate:
-(NSDate *)NSStringDateToNSDate:(NSString *)string {
23.在使用UISearchBar时,将背景色设定为clearColor,或者将translucent设为YES,都不能使背景透明,经过一番研究,发现了一种超级简单和实用的方法:
背景完全消除了,只剩下搜索框本身了。
24. 图像与缓存 :
UIImageView *wallpaper = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@"icon.png"]]; // 会缓存图片
UIImageView *wallpaper = [[UIImageView alloc] initWithImage: [UIImage imageWithContentsOfFile:@"icon.png"]]; // 不会缓存图片
25. iphone-常用的对视图图层(layer)的操作
对图层的操作:
(1.给图层添加背景图片:
myView.layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage;
(2.将图层的边框设置为圆脚
myWebView.layer.cornerRadius = 8;
myWebView.layer.masksToBounds = YES;
(3.给图层添加一个有色边框
myWebView.layer.borderWidth = 5;
myWebView.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];
26. UIPopoverController 使用
[UIWebView loadHTMLString:html baseURL:baseURL];
//这段代码可以正确显示图片。
1. 随机数:
srandom(time(NULL)); //随机数种子
id d = random(); // 随机数
id d = random(); // 随机数
2. 视频播放:
MPMoviePlayerController *moviePlayer;
moviePlayer = [[MPMoviePlayerController alloc]
initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Movie" ofType:@"m4v"]]];
//初始化视频播放器对象,并传入被播放文件的地址
moviePlayer.movieControlMode = MPMovieControlModeDefault;
[moviePlayer play];
//此处有内存溢出
moviePlayer = [[MPMoviePlayerController alloc]
initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Movie" ofType:@"m4v"]]];
//初始化视频播放器对象,并传入被播放文件的地址
moviePlayer.movieControlMode = MPMovieControlModeDefault;
[moviePlayer play];
//此处有内存溢出
3. 启动界面显示:
iPhone软件启动后的第一屏图片是非常重要的往往就是loading载入中的意思。设置它说来也简单,但是却无比重要
只需要在resource里面将你希望设置的图片更名为Default.png,这个图片就可以成为iPhone载入的缺省图片
4. iPhone的系统目录:
//得到Document目录:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
//得到temp临时目录:
NSString *tempPath = NSTemporaryDirectory();
//得到目录上的文件地址:
NSString *文件地址 = [目录地址 stringByAppendingPathComponent:@"文件名.扩展名"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
//得到temp临时目录:
NSString *tempPath = NSTemporaryDirectory();
//得到目录上的文件地址:
NSString *文件地址 = [目录地址 stringByAppendingPathComponent:@"文件名.扩展名"];
5. 状态栏显示Indicator:
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
6.app Icon显示数字:
- (void)applicationDidEnterBackground:(UIApplication *)application{
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:5];
}
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:5];
}
7.sqlite保存地址:
代码
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *thePath = [paths objectAtIndex:0];
NSString *filePath = [thePath stringByAppendingPathComponent:@"kilonet1.sqlite"];
NSString *dbPath = [[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"kilonet2.sqlite"];
NSString *thePath = [paths objectAtIndex:0];
NSString *filePath = [thePath stringByAppendingPathComponent:@"kilonet1.sqlite"];
NSString *dbPath = [[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"kilonet2.sqlite"];
8.Application退出:exit(0);
9. AlertView,ActionSheet的cancelButton点击事件:
代码
-(void) actionSheet :(UIActionSheet *) actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
NSLog(@"cancel actionSheet........");
//当用户按下cancel按钮
if( buttonIndex == [actionSheet cancelButtonIndex]) {
exit(0);
}// //当用户按下destructive按钮// if( buttonIndex == [actionSheet destructiveButtonIndex]) {// // DoSomething here.// }
}
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex {
NSLog(@"cancel alertView........");
if (buttonIndex == [alertView cancelButtonIndex]) {
exit(0);
}
}
NSLog(@"cancel actionSheet........");
//当用户按下cancel按钮
if( buttonIndex == [actionSheet cancelButtonIndex]) {
exit(0);
}// //当用户按下destructive按钮// if( buttonIndex == [actionSheet destructiveButtonIndex]) {// // DoSomething here.// }
}
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex {
NSLog(@"cancel alertView........");
if (buttonIndex == [alertView cancelButtonIndex]) {
exit(0);
}
}
10.给Window设置全局的背景图片:
window.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"coolblack.png"]];
11. UITextField文本框显示及对键盘的控制:
代码
#pragma mark -
#pragma mark UITextFieldDelegate
//控制键盘跳转
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if (textField == _txtAccount) {
if ([_txtAccount.text length]==0) {
return NO;
}
[_txtPassword becomeFirstResponder];
} else if (textField == _txtPassword) {
[_txtPassword resignFirstResponder];
}
return YES;
}
//输入框背景更换
-(BOOL) textFieldShouldBeginEditing:(UITextField *)textField{
[textField setBackground:[UIImage imageNamed:@"ctext_field_02.png"]];
return YES;
}
-(void) textFieldDidEndEditing:(UITextField *)textField{
[textField setBackground:[UIImage imageNamed:@"ctext_field_01.png"]];
}
#pragma mark UITextFieldDelegate
//控制键盘跳转
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if (textField == _txtAccount) {
if ([_txtAccount.text length]==0) {
return NO;
}
[_txtPassword becomeFirstResponder];
} else if (textField == _txtPassword) {
[_txtPassword resignFirstResponder];
}
return YES;
}
//输入框背景更换
-(BOOL) textFieldShouldBeginEditing:(UITextField *)textField{
[textField setBackground:[UIImage imageNamed:@"ctext_field_02.png"]];
return YES;
}
-(void) textFieldDidEndEditing:(UITextField *)textField{
[textField setBackground:[UIImage imageNamed:@"ctext_field_01.png"]];
}
12.UITextField文本框前面空白宽度设置以及后面组合按钮设置:
代码
//给文本输入框后面加入空白
_txtAccount.rightView = _btnDropDown;
_txtAccount.rightViewMode = UITextFieldViewModeAlways;
//给文本输入框前面加入空白
CGRect frame = [_txtAccount frame];
frame.size.width = 5;
UIView *leftview = [[UIView alloc] initWithFrame:frame];
_txtAccount.leftViewMode = UITextFieldViewModeAlways;
_txtAccount.leftView = leftview;
_txtAccount.rightView = _btnDropDown;
_txtAccount.rightViewMode = UITextFieldViewModeAlways;
//给文本输入框前面加入空白
CGRect frame = [_txtAccount frame];
frame.size.width = 5;
UIView *leftview = [[UIView alloc] initWithFrame:frame];
_txtAccount.leftViewMode = UITextFieldViewModeAlways;
_txtAccount.leftView = leftview;
13. UIScrollView 设置滑动不超出本身范围:
[fcScrollView setBounces:NO];
14. 遍历View里面所有的Subview:
代码
NSLog(@"subviews count=%d",[self.view.subviews count]);
if ([self.view.subviews count] > 0) {
for (UIView *curView in self.view.subviews) {
NSLog(@"view.subviews=%@", [NSString stringWithUTF8String:object_getClassName(curView)]);
}
}
if ([self.view.subviews count] > 0) {
for (UIView *curView in self.view.subviews) {
NSLog(@"view.subviews=%@", [NSString stringWithUTF8String:object_getClassName(curView)]);
}
}
14. 在drawRect里画文字:
UIFont * f = [UIFont systemFontOfSize:20];
[[UIColor darkGrayColor] set];
NSString * text = @"hi \nKiloNet";
[text drawAtPoint:CGPointMake(center.x,center.y) withFont:f];
15. NSArray查找是否存在对象时用indexOfObject,如果不存在则返回为NSNotFound.
16. NString与NSArray之间相互转换:
array = [string componentsSeparatedByString:@","];string = [[array valueForKey:@"description"] componentsJoinedByString:@","];
17. TabController随意切换tab bar:
[self.tabBarController setSelectedIndex:tabIndex];
或者 self.tabBarController.selectedIndex = tabIndex;
或者实现下面的delegate来扑捉tab bar的事件:
代码-(BOOL) tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
if ([viewController.tabBarItem.title isEqualToString: NSLocalizedString(@"Logout",nil)]) {
[self showLogout];
return NO;
}
return YES;
}
18. 自定义View之间切换动画:
代码
或者:- (void) pushController: (UIViewController*) controller
withTransition: (UIViewAnimationTransition) transition
{
[UIView beginAnimations:nil context:NULL];
[self pushViewController:controller animated:NO];
[UIView setAnimationDuration:.5];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationTransition:transition forView:self.view cache:YES];
[UIView commitAnimations];
}
withTransition: (UIViewAnimationTransition) transition
{
[UIView beginAnimations:nil context:NULL];
[self pushViewController:controller animated:NO];
[UIView setAnimationDuration:.5];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationTransition:transition forView:self.view cache:YES];
[UIView commitAnimations];
}
代码
CATransition *transition = [CATransition animation];
transition.duration = kAnimationDuration;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionPush;
transition.subtype = kCATransitionFromTop;
transitioning = YES;
transition.delegate = self;
[self.navigationController.view.layer addAnimation:transition forKey:nil];
self.navigationController.navigationBarHidden = NO;
[self.navigationController pushViewController:tableViewController animated:YES];
transition.duration = kAnimationDuration;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionPush;
transition.subtype = kCATransitionFromTop;
transitioning = YES;
transition.delegate = self;
[self.navigationController.view.layer addAnimation:transition forKey:nil];
self.navigationController.navigationBarHidden = NO;
[self.navigationController pushViewController:tableViewController animated:YES];
19. UIWebView加载时白色显示问题解决以及字体统一设置:
uiWebView.opaque = NO;
代码
20.计算字符串长度:
CGFloat w = [title sizeWithFont:[UIFont fontWithName:@"Arial" size:18]].width;
21. iTunesLink should be your applications link
NSString *iTunesLink = @"http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=xxxxxx&mt=8";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
-(NSDate *)NSStringDateToNSDate:(NSString *)string {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
[formatter setDateFormat:@"yyyy-MM-dd"];
NSDate *date = [formatter dateFromString:string];
[formatter release];
return date;
}
NSString *year = [myDate descriptionWithCalendarFormat:@"%Y" timeZone:nil locale:nil];or
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy"];
//Optionally for time zone converstions
[formatter setTimeZone:[NSTimeZone timeZoneWithName:@"..."]];
NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];
22。 模拟器的文件位置其中#username#表示当前用户名: /Users/#username#/Library/Application Support/iPhone Simulator/User/Applications/ |
23.在使用UISearchBar时,将背景色设定为clearColor,或者将translucent设为YES,都不能使背景透明,经过一番研究,发现了一种超级简单和实用的方法:
1 | [[searchbar.subviews objectAtIndex:0]removeFromSuperview]; |
24. 图像与缓存 :
UIImageView *wallpaper = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@"icon.png"]]; // 会缓存图片
UIImageView *wallpaper = [[UIImageView alloc] initWithImage: [UIImage imageWithContentsOfFile:@"icon.png"]]; // 不会缓存图片
25. iphone-常用的对视图图层(layer)的操作
对图层的操作:
(1.给图层添加背景图片:
myView.layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage;
(2.将图层的边框设置为圆脚
myWebView.layer.cornerRadius = 8;
myWebView.layer.masksToBounds = YES;
(3.给图层添加一个有色边框
myWebView.layer.borderWidth = 5;
myWebView.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];
26. UIPopoverController 使用
-(void) onSetting:(id) sender {
SplitBaseController *detail = [[SettingServerController alloc] init];
CGRect frame = [(UIView *)sender frame];
frame.origin.y = 0;
UIPopoverController *popwin = [[UIPopoverController alloc] initWithContentViewController:detail];
[popwin setPopoverContentSize:CGSizeMake(400, 300) animated:YES];
popwin.delegate = self;
[popwin presentPopoverFromRect: frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
[detail release];
} 27.在UINavigationBar中添加左箭头返回按钮
在iPhone里面最讨厌的控件之一就是 UINavigationBar了。这个控件样式修改不方便,连添加按钮也特别麻烦。下面的例子是如何手动添加带箭头的按钮:
UINavigationItem *item = [navBar.items objectAtIndex:0];
UINavigationItem *back = [[UINavigationItem alloc] initWithTitle:@"Back"];
NSArray *items = [[NSArray alloc] initWithObjects:back,item,nil];
[navBar setItems:items];
- (BOOL)navigationBar:(UINavigationBar *)navigationBar
shouldPopItem:(UINavigationItem *)item{
//在此处添加点击back按钮之后的操作代码
return NO;
}
订阅:
博文 (Atom)