8
5

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 3 years have passed since last update.

[Xcode]あんたこれ知らないなんてバカぁ?(知っておくと便利Tips10選)

Last updated at Posted at 2020-12-12

上記釣りタイトル大変失礼致しました。

#動作環境
Xcode:Version 12.2

#①範囲選択したテキスト(変数名、関数など)を一括してリネームすることができる
command + Ctrl + e
Qiita01.gif

#②範囲選択したテキストを上下に移動できる
###上にあげる
command + option(⌥) + {
###下に下げる
command + option(⌥) + }
Qiita02.gif

#④範囲選択して、コード整形する
範囲指定後、Ctrl + i
Qiita03.gif

#⑤プロジェクト内のファイル検索を行える
command + Shift + o
Qiita04.gif

#⑥コードを保存して好きな時に呼び出せる
####手順1, 範囲選択したテキスト上で二本指タップ
####手順2, "Create Code Snippet"を選択

Qiita05.gif

#⑦一括で文字を追加入力
option(⌥)を押しながらドラッグ。離したところで任意の文字入力
Qiita06.gif

#⑧検索文字置換を行える
command + F + option(⌥)
Qiita07.gif

#⑨現在見ているファイル内の関数や変数一覧を表示&移動できる
Ctrl + 6
Qiita08.gif

#⑩UIColor型の値で大活躍の"Color Literal"
var color:UIColor() = Color Literal

⚠︎"Color Literal"とこのまま入力しても表示されない可能性があります!その場合、先頭の"Color"だけ入力して予測変換を待ちましょう!
Qiita09.gif

#番外編⑪プレイスホルダーを作ることができる
<#文字#>

8
5
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
8
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?