2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Xcode ファンクションメニュー ショートカットキー まとめ

Last updated at Posted at 2015-09-04

Xcodeのcode editのファンクションメニューにコメントを表示させるためのキーワード

viewController.m
# pragma mark - the function menu
-(void)functionMenu
{
    //MARK:xxxx
    //TODO:xxxx
    //FIXME:xxxx
    //???:xxxx
}

markの"-"は仕切り線の為。無くてもよい。
s2015-09-04_19_20_23.png

Xcode で複数行のタブ(インデント,シフト)やコメントアウトするには

shiftを押しながら行選択してから
 left shift ← の場合は
  ⌘[
 right shift → の場合は
  ⌘]
 コメントアウト comment selection // の場合は
  ⌘/
menu->Edit->Structure->にある

Xcode で *.h と *.m を切り替える

^⌘↑
menu->navigate->にある

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?