47
47

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.

iOSシミュレータの「通信事業者」表記を変更する

Posted at

ステータスバーに表示されるこれです。

Simulator-Screen-Shot-2016.10.19-11.29.06.jpg

元ネタ:[toursprung/iOS-Screenshot-Automator]
(https://github.com/toursprung/iOS-Screenshot-Automator/blob/master/changeCarrierName)

.stringファイルをコピー・変換してから編集します。

$ cd ~/Desktop/

$ cp /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.0.sdk/System/Library/CoreServices/SpringBoard.app/ja.lproj/SpringBoard.strings ~/Desktop/

$ plutil -convert xml1 SpringBoard.strings 

変換したSpringBoard.stringsをテキストエディタ等で開きます。「通信事業者」で検索し、該当箇所をお好きな文字列に変更します。

通信キャリアっぽくしたい場合は次のようにします。まるはU+2981を使ってます。

<key>SIMULATOR_CARRIER_STRING</key>
<string>⦁⦁⦁⦁⦁ au</string>

編集したら保存して、元の場所にコピーします。

$ sudo cp SpringBoard.strings  /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.0.sdk/System/Library/CoreServices/SpringBoard.app/ja.lproj/

シミュレータを起動して確認します。

Simulator-Screen-Shot-2016.10.19-11.11.25.jpg

これでスクリーンショット保存するとそれっぽく見えます。

47
47
2

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
47
47

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?