引用自
http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/ctags.html CTAGs and UltraEdit
What is Ctags?
Ctags is a program that generates a tag (or index) file of objects and functions found in C/C++ header and source files. The tag file allows these items to be referenced quickly from within UltraEdit.
What does Ctags do?
The purpose of Ctags is to allow you to quickly find a function or object that is defined elsewhere in the active file or another file (i.e. header or source file). You can use this feature to navigate through your project to find the various functions, variables, class members, and so on...
After you have generated your tag file, you simply use the "Find Symbol" in the Search menu to find the symbol (located next to the cursor in the active document) elsewhere in the file(s).
UltraEdit supports Ctags, either as part of a project, or independently.
Using Ctags
Ctags EXE
UltraEdit relies on an external tag file generator. There are many versions of Ctags; however, we recommend "Exuberant Ctags" available from http://ctags.sourceforge.net/. UltraEdit includes a Ctags EXE in the GNU folder (in the installation directory) as part of the standard installation. Therefore, you would not need to download/install Ctags to use this feature.
UltraEdit can make use of an existing tagfile, or if an EXE for creating Ctags is available it can also create the tag file. If you prefer to use a different Ctags version, you may specify this under Ctag Options in the Project menu.
PLEASE NOTE: IDM Computer Solutions, Inc. does not support Ctags (the program) and we can't offer definitive answers on how Ctags itself works. We can help with information on standard configuration for integration with UltraEdit and how Ctags should work in conjunction with UltraEdit. For the most comprehensive and up-to-date information regarding Exuberant Ctags please see http://ctags.sourceforge.net/. The latest version of the manual for Exuberant Ctags should be available at http://ctags.sourceforge.net/ctags.html.
Step 1: Create the Tag file
The tag file is the index file of the various functions, class members, etc. In order to use Ctags, you must first create the Tag file.
You can create the Tag file using the Create CTAG file menu item in the Project menu.
If you prefer, you may also select the option Create CTAG file on project load in the Project Settings dialog in the Project Menu. This will cause the Ctags file to be created automatically when the project is loaded. This essentially ensures that you have an updated Ctags file every time you open the project.
Step 2: Find a Symbol/Tag
As we've previously discussed, the purpose of Ctags is to be able to quickly find a function or object that is defined elsewhere in the active file or another file (i.e. header or source file).
Using Ctags is simple. When editing source files, you may position the cursor over a function, variable, class member, or macro and press F11. This activates the Find Symbol functionality (in the Search menu) which positions the cursor on the definition of the item you searched for.
If the specified item (symbol) exists in the active document, focus will shift to the appropriate line in the active file. If the specified item (symbol) exists in a different file, that file will be opened to the line where the symbol is defined. Let's give it a try...
Now that we've created the Tag file in Step 1, you may place your cursor next to a symbol or tag (function, class member, variable, etc).
You may now select the Find Symbol item from the Search menu (or press F11). UltraEdit, in conjunction with the Tag file, will search for the symbol.
If only one match is found
The file will be opened (in UltraEdit) and the cursor positioned at the symbol.
If multiple matches occur
A dialog box will be shown giving you the option to position the cursor at the appropriate tag.
If a tag cannot be found
A dialog will be displayed indicating that the tag could not be found.
Using our sample project, the definition of "UpdateClientWindow" was found on line 32 and the cursor is positioned at the beginning of the line.
Ctags Configuration within UltraEdit
As we've previously mentioned above, Ctags is intalled as part of the standard installation, so it is not necessary to download/install the Ctags exe. However, UltraEdit does allow you to configure some options in Ctags.
The Ctag Options dialog (in the Project menu) allows you to change options related to Ctags:
The following three items may be defined using the Tag File Options dialog:
Default Tagfile
This specifies the tagfile to be used if there is not a specific project tagfile active (defined in the Project Settings dialog under the Project menu). Note: This must be present if there is not a project-specific tagfile for UltraEdit to look up the symbols associated with the active project.
Ctag EXE Path/Name
This specifies the full path and name of the Ctag exe that will be run to create the tag file from within UltraEdit. UltraEdit can reference a tagfile for symbols if this is not present, but it can not create a new Tag file. The default setting for this is "ctags.exe" in the "GNU" subdirectory under the UltraEdit installation directory.
CTAG Parameters
This specifies the parameters to be passed to the Ctags exe for it to function correctly. The default settings ( -L %fi -f %fo ) are configured for Exuberant Ctags as described above.
Troubleshooting/Tips
What does "-L %fi -f %fo" mean?
-L file This instructs Ctags to read from file a list of file names for which tags should be generated. If file is specified as "−", then file names are read from standard input. File names read using this option are processed following file names appearing on the command line. Options are also accepted in this input. If this option is specified more than once, only the last will apply.
Note: File is read in line-oriented mode, where a new line is the only delimiter and non-trailing white space is considered significant, in order that file names containing spaces may be supplied (however, trailing white space is stripped from lines); this can affect how options are parsed if included in the input.
%fi
%fi on the parameter line is replaced when the ctag exe is run with the filename/path of a file that contains a list of files that the ctags.exe will use to create its tags from. If a project is loaded in UltraEdit, UltraEdit creates a temporary file with a list of the project files and passes this in place of %fi.
-f tagfile
-f tagfile instructs Ctags to use the name specified by tagfile for the tag file (default is "tags", or "TAGS" when running in etags mode). If tagfile is specified as "−", then the tag file is written to standard output instead. Ctags will stubbornly refuse to take orders if tagfile exists and its first line contains something other than a valid tags line. This will save your neck if you mistakenly type "ctags −f *.c", which would otherwise overwrite your first C file with the tags generated by the rest! It will also refuse to accept a multi-character file name which begins with a ’−’ (dash) character, since this most likely means that you left out the tag file name and this option tried to grab the next option as the file name. If you really want to name your output tag file "−ugly", specify it as "./−ugly". This option must appear before the first file name. If this option is specified more than once, only the last will apply.
%fo
%fo on the parameter line is replaced with the full filename/path of the tag file to be created. This would be the tag file specified in the project, or the Default Tagfile defined above.
All Options
For further options for Exuberant Ctags please see http://ctags.sourceforge.net/ctags.html.
Why aren't the tags in my files being mapped?
--langmap=map[,map[...]] controls how file names are mapped to languages (see SOURCE FILES, at http://ctags.sourceforge.net/ctags.html). Each comma-separated map consists of the language name (either a built-in or user-defined language), a colon, and a list of file extensions and/or file name patterns. A file extension is specified by preceding the extension with a period (e.g. ".c"). A file name pattern is specified by enclosing the pattern in parentheses (e.g. "([Mm]akefile)"). If appropriate support is available from the runtime library of your C compiler, then the file name pattern may contain the usual shell wildcards common on Unix (be sure to quote the option parameter to protect the wildcards from being expanded by the shell before being passed to ctags). You can determine if shell wildcards are available on your platfom by examining the output of the --version option, which will include "+wildcards" in the compiled feature list; otherwise, the file name patterns are matched against file names using a simple textual comparison.
If the first character in a map is a plus sign, then the extensions and file name patterns in that map will be appended to the current map for that language; otherwise, the map will replace the current map. For example, to specify that only files with extensions of .c and .x are to be treated as C language files, use "--langmap=c:.c.x"; to also add files with extensions of .j as Java language files, specify "--langmap=c:.c.x,java:+.j". To map makefiles (.e.g files named either "Makefile", "makefile", or having the extension ".mak") to a language called "make", specify "--langmap=make:([Mm]akefile).mak". To map files having no extension, specify a period not followed by a non-period character (e.g. ".", "..x", ".x."). To clear the mapping for a particular language (thus inhibiting automatic generation of tags for that language), specify an empty extension list (e.g. "--langmap=fortran:"). To restore the default language mappings for all a particular language, supply the keyword "default" for the mapping. To specify restore the default language mappings for all languages, specify "--langmap=default". Note that file extensions are tested before file name patterns when inferring the language of a file.
If you were to specify this in the Ctag Options dialog in the Project menu you could use
"--langmap=c:.c.x -L %fi -f %fo" with the default parameters so that files with a ".x" extension would be parsed as C files. The "-L" option which indicates that the files to be parsed are to be read from the specified file would still require that these files be part of the project for this to work.
How can I keep the Find Symbol function from going to a matching but incorrect tag?
The -n option may be added so that only line numbers would be used in the tag file for locating tags. This has four advantages:
1. Significantly reduces the size of the resulting tag file.
2. Eliminates failures to find tags because the line defining the tag has changed, causing the pattern match to fail.
3. Eliminates finding identical matching, but incorrect, source lines.
4. Retains separate entries in the tag file for lines which are identical in content.
四月 10th, 2009 at 21:53:03
Dev-Team釋出最新iPod Touch 2G破解 是3.0破解嗎??
站長 回應:
是目前的2.2.1版本喔。
四月 13th, 2009 at 21:57:33
這還要搭配什麼?
還是只執行這就行了?
站長 回應:
不用搭配什麼,他本身就是破解軟體,只不過目前這個版本是用命令提示字元,有圖示GUI版本,將會在近期發表。
四月 14th, 2009 at 12:43:31
我的touch復活了!!
自從陣亡之後
每天都過著吃布下飯的日子+這幾天又很忙
所以都沒有上來看~
不過今天剛好有時間
我把他救活了!!!!
真的很開心!!
我用這個版本的破解
一切都回歸正常了!!!
話說~雖然現在的這個是用DOS的
不過我覺得比之前的簡單了很多了!!!!
而且現在穩定性比較高了!!
不會時不時的就跳了出來!!!
電量的問題~只能說破解之後灌太多程式+遊戲了!!
70+的遊戲~完了一天都還有全部都玩玩!!
感謝大大那天的建議!!
站長 回應:
不用客氣囉。歡迎常來。
四月 22nd, 2009 at 13:18:08
我的iTouch 2G 2.2.1成功
過程就花大概2~3分鐘
其實還挺簡單的
0.確認iTouch連接電腦並且是關機狀態
1.進行過程螢幕會一閃一閃的,別擔心,繼續跟著往下做
2.按著左上角電源鍵3秒
3.持續按著電源件不放,同時按著Home鍵10秒
4.放開左上角電源鍵,繼續按著Home鍵30秒,等待系統自動解鎖
再來就會自動跑JB囉
等他跑完就成功了^^Y
成功後就多了Cydia可以下載
站長 回應:
感謝分享~~也恭喜你加入破解的行列囉。歡迎常來~!!!
四月 25th, 2009 at 12:33:07
我今天再次破解
沒想到一次就成功了
謝謝
站長 回應:
恭喜破解成功,歡迎加入。常常來逛喔。
四月 26th, 2009 at 18:25:08
我是香港來的讀者喔!
剛剛買了ipod touch,對它一無所知,哈哈。
從你的網址學了很多,也破解了,非常簡單,謝謝你呀!
keep it up!
站長 回應:
感謝支持,希望天天來晃晃囉。
四月 28th, 2009 at 14:28:41
請問這個破解完後会帶什麼軟體 ? 如cydia..
站長 回應:
是的,會有Cydia。
五月 2nd, 2009 at 22:27:58
我想請問現在最新的IPOD TOUCH是第三代嗎??
還有那個IPOD TOUCH “2G” 這是什麼意思??
是指他的韌體版本是2G?
如果我現在在中華電信買一台最新的IPOD TOUCH
他的版本會是什麼版本??有辦法破解嗎??
站長 回應:
如果是現在買的話會是iPod Touch 2G。可以破解。
五月 2nd, 2009 at 23:25:02
回樓上
現在的Ipod Touch是2代喔
2G 是 2nd Generation 就是第2代的意思
中華電信是賣Iphone喔
現在Ipod Touch都已經可以破解摟
希望有幫到忙 ^^
站長 回應:
其實中文名稱好像有點爭議,我在下面的留言會解釋一下。感謝你的分享喔。
五月 2nd, 2009 at 23:32:24
http://tw.f5.page.bid.yahoo.com/tw/auction/e33227658?
可是我看網拍
他上面寫最新是第三代..
站長 回應:
中 文在第幾代當中有爭議,iPod Touch 1G(最原始版本),一開始所搭配的韌體版本為1.X。然後隨後2.0版本韌體發表了,所以市面上的iPod Touch 1G重新更新韌體為2.x,然後販賣,在台灣有人把它稱之為第二代。隨後,iPod Touch 2G發表了,iPod Touch 2G有內建喇叭,音量控制鈕。所以又有商家稱之為第三代。不過這些都是部分商家自己研發的名詞,本站為了防止混淆,所以才一直使用英文名稱。
五月 5th, 2009 at 07:08:45
謝啦….
只花了2分鐘
只是想請問一下改完隻後可以關機嗎?
我已經改好了只是不敢關機..
請解答謝謝
站長 回應:
此版本是完美破解,所以可以安心的關機喔。
五月 5th, 2009 at 08:15:07
順便問一下..請問去哪裡下載字典阿
可以給我名子嗎..?
站長 回應:
到AppStore打”dictionary”搜尋,可以找到很多付費或免費的軟體。
五月 5th, 2009 at 11:30:57
請問是JB後的畫面是英文的嗎? 謝謝:)
站長 回應:
JB後的iPod Touch還是會依照你設定的語言顯示,如果原本是中文那還是會顯示中文。
五月 5th, 2009 at 16:44:14
請問JB後,之前打的備忘錄那些資料會不見嗎??還有沒有無線上網是不是就不行上網了@@也就不行執行Cydia下載東西了嗎??
站長 回應:
此版本和之前的不一樣,不用重新刷韌體,所以破解後原本的資料還會在喔。一定要有無線網路iPod Touch才能上網,Cydia也要有無線網路才能使用。
五月 5th, 2009 at 16:54:39
為啥我都不會有反應…
我到第4步驟 解鎖的時候 電腦會說偵測到新硬體…
要我安裝驅動…
然後我的IPOD也沒啥動作…
是要有安裝ITUNES的電腦才能嗎 0.0?
站長 回應:
是的,要有iTunes才能使用破解軟體喔。
五月 5th, 2009 at 18:02:32
鳳梨終於出現了~~XD
謝謝站長~~~
站長 回應:
不用客氣喔,能用比較重要。不知道使用過程方不方便?
五月 5th, 2009 at 19:52:27
忙完段考準備要開始JB了,請問大大載點是不是壞掉了??
站長 回應:
載點沒壞喔,那個載點是bt檔,你要先安裝bt才能抓。
五月 5th, 2009 at 20:08:36
補充一下我JB後資料軟體都還在喔~~
此破解真的很方便~~
照著Stanley0322大大的方法就可以了~~
不過破解的電腦要有安裝ITUNES
不然偵測不到DFU狀態下的IPOD~~~
站長 回應:
感謝經驗分享,原來這一版不用重刷韌體,所以資料不會消失,你提醒了我才知道。
五月 5th, 2009 at 21:44:05
今天我也開始了
沒想到JB後 資料都還在= =+
這樣應該算是有成功吧!!XDD
不過 破解後我要怎樣安裝我想要的軟體進去阿…..= =
破解後反而不知道要怎樣弄
有哪位大大可以指導一下嗎
站長 回應:
遊戲軟體可透過AppStore、Cydia、installer下載,本站不允許討論ipa軟體,不好意思喔。
五月 6th, 2009 at 03:26:15
To 牛: 小弟試過囉!Linux & Mac & Windows都沒掛喔!多試幾次吧!http://redsn0w.com/ 祝你JB成功!
站長 回應:
我不知道為什麼會這樣,所以我把它先刪掉了。不過還是感謝你熱心的回覆喔。
五月 6th, 2009 at 05:04:21
哈~我只是點進去網址按一下載點而已,不知道是BT檔= =
見笑了….
站長 回應:
不會不會,你說的是沒錯的,檔案可以下載。
五月 6th, 2009 at 05:28:45
JB後資料會不見,之前下載的軟體也都會不見,不過如果你有用iTunes先備份,那你的資料可以在同步回去的。一定要有無線網路iPod Touch才能上網,Cydia也要有無線網路才能使用。
站長…這版的好處就是改了之後全部東西都會留著唷
所以其實東西都不會消失
站長 回應:
恩恩,了解,感謝你的分享,已經修正留言。因為沒用過這個版本破解,所以才以為要刷新韌體。
五月 7th, 2009 at 07:36:06
謝謝Haku大大的提醒˙ˇ˙
謝謝jj大大及JoeT大大的測試˙ˇ˙
謝謝站長的回應˙ˇ˙
站長 回應:
免客氣。
五月 7th, 2009 at 07:38:19
有沒有不是BT 的
我沒有開BT的軟件
站長 回應:
windows版本的:http://www.mediafire.com/file/ymj50xmg1bt/redsn0w-win_0.3.zip
五月 7th, 2009 at 19:06:49
站長
我想問一下關於充電的問題
因為在網路上爬文 聽到2種說法
一種是用到完再充電
一種是不要用完再在充不然會電池會受命縮短
那到底是怎樣才對的呢?
站長 回應:
這真的是個好問題 ,我小時候聽到的版本也是用到完再充電,防止電池記憶性影響壽命,不過今年開始許多科學家推翻這個理論,等電池快用完之前就要充電,不要用到完全沒有。我 想這還有有爭議。不過兩個論點共通點就是,不要只用了一點點就充電,這樣確實是對電池不好。不過是用光還是剩下10%就充電,那就看個人囉(我趨向相信快 用光前就要充電)。
希望大家可以補充一下。
五月 8th, 2009 at 08:30:35
http://www.youtube.com/watch?v=dKGgenrLrw0
這是影片..有需要的人可以去看看
站長 回應:
感謝,將他補進去文章裡面。
五月 9th, 2009 at 10:19:20
我JB成功了…
可是為什麼我裡頭沒有installer??
站長 回應:
此版本好像沒有installer,不過installer的軟體cydia也下載的到,所以別擔心喔。
五月 9th, 2009 at 12:00:57
成功了,非常感謝
安裝好後裡頭只有”Cydia”沒有”installer”??
請問安裝好後就完成, 直接可以用嗎?
還要做些什麼和注意些什麼呢
站長 回應:
此版本好像沒有installer,不過installer的軟體cydia也下載的到,所以別擔心喔。
破解完後,還是和正常使用就可以了,多出來的Cydia可以用來下載AppStore上禁止的軟體,想了解更多可以到新手上路區找相關資料喔。
五月 9th, 2009 at 16:02:49
我在其他網站看到說破解完要替換MobileIntallation,能不能告訴我為什麼呢?
站長 回應:
破解完即可使用,不需要替換喔。
五月 9th, 2009 at 22:19:05
請問如何看破解時所用的軟件是哪一種的?
因為是給別人破解的
不知道他破解是用新版的還是舊版的
只知道是完美破解
可以隨時關機
軟件裡沒有你們說的installer
但是有cydia
installer是幹麼的?
破解後玩遊戲是不是比沒破解玩遊戲來的耗電?
破解完 下載遊戲
遊戲副檔名是ipa
請問怎麼放進去玩呢?
抱歉問題很多 原諒我這新手><”
站長 回應:
用哪一種破解法其實不太看得出來,不過不論用哪一種方法都是一樣的,所以不用擔心。至於Cydia、installer的用處麻煩參考新手上路區,裡面可以找到你所需要的解答。此外,因為ipa已經違法,本站不允許討論ipa檔案的問題,而且容易造成系統錯誤。
五月 10th, 2009 at 00:15:54
太棒了!! 我已完成JB動作了!!
改緊充實我的IPOD去了
感謝詳細做法!!
站長 回應:
恭喜囉,希望常來喔。
五月 10th, 2009 at 11:49:37
請問installer的用處?(新手上路區沒說)謝謝~
站長 回應:
installer和cydia都是一樣的功能,可以用來下載AppStore上不被允許的軟體,例如背景更改、錄影功能等等。
五月 10th, 2009 at 22:27:15
我成功了!!
只是cydia都是英文看不懂…囧
我想安裝台灣的離線地圖我該怎麼找??
站長 回應:
離線地圖的教學還在撰寫當中,如果你很急著用,可以用Google尋找一下喔。
五月 10th, 2009 at 23:48:00
我找到了~~用xgps軟體
可以下載地圖…只是好大~~~全台灣下載的話要6G
怎麼會那麼多??
站長 回應:
這和地圖的詳細度有關,不過就算使用離線地圖軟體,全台灣的圖檔也是要上2或3 GB的,所以算是正常。你可以從你需要的地區開始下載起。
五月 11th, 2009 at 17:52:12
那請問installer和cydia既然功能一樣,有同時存在的必要嗎?謝謝
(謝謝你的回答~因為最近想買一台,先做做功課 )
站長 回應:
這和破解的演變有關,installer是最早的破解軟體,但隨著2.x的韌體發表,Cydia慢慢變的熱門,所以也就比較少人會用installer了,很多軟體現在都Cydia才能下載的到了。
五月 12th, 2009 at 00:18:56
請問一下站長
我的歌都在I P T 裡
破了以後 歌會沒了嗎
電腦都沒了那些歌 我試了按備份
但都找不到在那 如果有人知道 能告訴我在那個資料俠嗎 謝謝!!
站長 回應:
你用這個方法破解的話,所有的檔案並不會改變喔,都會保留住。如果你想把歌曲抓出來,是看看新手區中的”將歌曲從iPod/iPhone中匯出”。
五月 13th, 2009 at 22:58:47
站長我有一個問題想問你…
我想知道是不是在http://redsn0w.com/下載這3個軟件…?
然後跟這些步驟,即按著home件等等…這些軟件就自動send入i-touch?
還有沒有其他步驟…風險大不大的?
希望站長看得明…
站長 回應:
只要依照網友提供的步驟就可以完成囉,風險當然不敢說沒有,不過此版本是目前最容易破解的。破解前請確定對電腦有一定程度的了解,並且了解破解。
五月 14th, 2009 at 05:20:35
我每次到步驟四的時候IPOD都會出現ITUNES跟USB的圖示ㄟ,我因該怎麼辦呢?在JB的時候也要開個ITUNES媽?我電腦是VISTA的可以使用嗎???我的DS模式一直顯示hit any key continue……
站長 回應:
這版本Vista也可以用喔。你要先確定一開始步驟一的時候你的iPod Touch是關機的喔。
五月 14th, 2009 at 20:26:07
之前試了很多方法都不行,但用左這方法後右方便右快捷 V GOOD!!! 重有我想問用了這方破解後是不是可以安裝遊戲??
站長 回應:
可以透過AppStore、Cydia下載遊戲。
五月 17th, 2009 at 15:36:15
請問一下~JB完後為何無法使用itunes匯入遊戲?
我的IPHONE就可以…@@也是JB過的…
另外,為何我JB完後沒有Installer這個軟體呢?
站長 回應:
你之前購買的軟體,只要在次下載就可以囉。如果你有備份,那使用備份同步也可以完成。此版本的破解沒有installer喔。
五月 20th, 2009 at 00:59:27
不知為什麼..
我總是 不能進入DFU”模式,,,
能教教我嗎?
五月 20th, 2009 at 01:22:17
不知道為什麼
我總是不能進入DFU模式
每次跟你的步驟做後..就會關機了..
能幫幫我嗎?
站長 回應:
請先確定在一開始的狀態是關機中的。
五月 20th, 2009 at 16:36:14
板大你好!!!
我已經成功破解了!!!但是我想要在ipod touch2G裡面用注音輸入法
請問我該去哪裡尋找??
Xgps這款軟體我下載了地圖
可是卻沒有辦法在離線狀態搜尋
這樣不是很麻煩呢??
cydia還有什麼有用或者是必推的軟體呢??
站長 回應:
注音法請參考:http://www.itouchtw.com/archives/528
XGPS無法在離線搜尋,不過你可以在出發前先設定好,這樣就可以使用路線圖囉。
cydia有許多好用的軟體,不知道你需要哪方面的?
五月 20th, 2009 at 18:38:42
在redshow下載後要怎樣??我開不到
站長 回應:
下載後安裝完畢,然後重開機就可以用了。他不會出現在桌面上喔。
五月 20th, 2009 at 21:56:56
我也是確認關機了才開始,,
但做完以上的步驟..
ipod touch仍是關機狀態,,,
itunes也沒有偵測到ipod touch
能幫幫我嗎??
(我按power+home的時候,,,大約7秒,,電腦會”登”一聲…
放了power鍵以後,,,按住home鍵大約7秒,,電腦會”登登登”響三聲…
但itunes也是不能偵測到ipod touch.
請問正確嗎?)
站長 回應:
聽你的步驟應該是沒錯,不過如果電腦一直找不到,我會建議你換台電腦,而且USB需要直接接電腦主機後面,並不能使用擴充的喔。
五月 23rd, 2009 at 13:56:51
你好,我在安裝此軟體之後有幾個問題
1.安裝完畢之後cydia是出現了,但是常有下載後的軟體一段時間會無法執行(也就是按了執行,進去後幾秒又跳出的問題)
2.基於以上的情況,我就進行一次重置,結果沒想到跑完之後,畫面一直停留在黑屏白蘋果的開機畫面,一段時間它稍微閃一次,黑屏白蘋果又出現,目前一直持續這個情況,連上電腦也沒有接續的聲音
因為是安裝此軟體之後才出現的現象,所以想跟您請教有沒有適合的處理方案
站長 回應:
1.請關機在開機,可以解決這樣的問題,如果重新開機後情況還是一樣,表是某些Cydia下載的軟體和系統有衝突。
2.請用手動恢復原廠韌體,然後在破解一次。新手區有教學喔。
五月 23rd, 2009 at 23:44:16
請問JB後的APP STORE可以更新嗎??
iBuletooth 現在有哪些功能??可以連接連芽耳機放音樂嗎??
站長 回應:
JB後的AppStore還是可以更新喔,不會影響原本的軟體權益。iBluetooth目前還不支援iPod Touch喔。
五月 25th, 2009 at 10:19:01
我想請問是什麼時候要按住那些鍵?我的等了半個多小時 都沒有成功…
站長 回應:
進行破解時,畫面上會有英文提示,提示會說哪時候要按。
五月 29th, 2009 at 00:53:18
請問除了 iacces 以外
在cydia裡面還有別的注音輸入法嗎??
iacces 只能試用20天
之後就囧了!!
站長 回應:
iCosta有倉頡,可以透過Cydia下載。
五月 30th, 2009 at 02:43:51
請救救我的IPOD TOUCH 一直卡在開機的白蘋果~連回覆都不行ˊˋ請大大救救我
站長 回應:
應該是你破解過程有漏掉步驟喔,還是不行開機的話,請刷回原廠韌體。新手區有教學喔。不行的話請在留言。
五月 31st, 2009 at 22:33:32
站長請問~
我在Downloading Jailbreak Data這邊跑了好久…
看著小圈圈一直轉似乎都沒有鳳梨出現的樣子..
一般人是2~3min就會完成嗎?
謝謝~
站長 回應:
理論上應該不會超過5分鐘,如果你超過了表示過程有問題,刷回原廠韌體再次破解看看。如果還是一樣,建議你換台電腦。
六月 2nd, 2009 at 22:23:10
耶!!!第一支IPOD TOUCH入手一小時
第一次就破解成功了
真開心
我是2.2.1版的
感謝大大
站長 回應:
恭喜,歡迎常來喔。
六月 3rd, 2009 at 22:03:01
站長請問一下
放在touch裡面的東西
例如 相片
有辦法加密嗎?
站長 回應:
我不知道這個是不是你要的,請到AppStore找尋關鍵字”picture safe”。
六月 4th, 2009 at 21:18:27
jailbreak 会不会有危险?会锁机吗?
还有,我用的是英文机,也可以用同一个方法jailbreak 吗??
站長 回應:
鎖機只會發生在iPhone身上,iPod Touch破解失敗不會鎖機。不論哪國版本,只要是iPod Touch 2G,都可以使用這個方法破解。
六月 5th, 2009 at 16:56:19
請問進入dfu模式之後
他出現AppleMobileDevice:WriteFile error 1167
然後就一直卡在Waiting for reboot
這種情形該怎麼辦呢
是哪裡出問題了
麻煩解答一下
感謝
站長 回應:
文章中5a.有提到喔,出現錯誤訊號要把usb拔掉再插回去。你現在要再重做一次囉。