17

BluetoothロゴのグリフがあるiOSのフォントはありますか?いくつかの絵文字、多分、または絵文字?WiFiロゴはどうですか?

編集:そのようなキャラクターがいるサードパーティのフォントはどうですか?私がライセンスを取得して出荷できるものですか?

4

5 に答える 5

7

いいえ、Bluetooth ロゴはグリフやフォント フェイス文字ではありません。

于 2012-07-27T18:41:56.937 に答える
5

セヴァが言ったように、それはルーンのハガル (ᚼ) とビャルカン (ᛒ) の組み合わせです。2 つの記号を組み合わせて同じことをしようとしていました。

この 2 つの文字を含むフォントを最初に見つけることで、これを実現しました。私はLeedsUniを使用することになりました。ここからダウンロードできます: http://www.personal.leeds.ac.uk/~ecl6tam/ .

info.plist でフォントが配置されているパスを参照する必要があります。

  <key>UIAppFonts</key>
  <array>
    <string>Fonts/LeedsUni10-12-13.ttf</string>
  </array>

次に、2 つのキャラクターが適切に並ぶように、2 つのUIViewオブジェクト (UIButton私の場合はオブジェクト) を互いにオーバーラップさせて作成しました。使用するフォントによっては、UIView フレームの x 値と y 値を調整する必要がある場合があります。

Xamarin を使用しているため、私のコードは C# ですが、Objective C または Swift でも同じことができるはずです。

UIView bleView = new UIView(new CGRect(0, 0, 34.0f, 34.0f));

string fontName = "LeedsUni";

UIButton bluetoothToSerialButton = new UIButton(UIButtonType.RoundedRect);
bluetoothToSerialButton.Frame = new CGRect(0, 0, 34.0f, 34.0f);
bluetoothToSerialButton.SetTitleColor(UIApplication.SharedApplication.Delegate.GetWindow().TintColor, UIControlState.Normal);
bluetoothToSerialButton.SetTitle("ᛒ", UIControlState.Normal);
bluetoothToSerialButton.Font = UIFont.FromName(fontName, 34.0f);

UIButton bluetoothToSerialButton2 = new UIButton(UIButtonType.RoundedRect);
bluetoothToSerialButton2.Frame = new CGRect(-3.5f, 0, 34.0f, 34.0f);
bluetoothToSerialButton2.SetTitleColor(UIApplication.SharedApplication.Delegate.GetWindow().TintColor, UIControlState.Normal);
bluetoothToSerialButton2.SetTitle("ᚼ", UIControlState.Normal);
bluetoothToSerialButton2.Font = UIFont.FromName(fontName, 34.0f);

bleView.AddSubviews(new UIView[] { bluetoothToSerialButton, bluetoothToSerialButton2 });
于 2015-06-11T20:06:42.783 に答える
2

これらは、ここからダウンロードできる Google マテリアル デザインのアイコンですhttps://material.io/tools/icons/?icon=bluetooth&style=baseline ここに画像の説明を入力

于 2018-11-02T16:46:53.300 に答える
1

絵文字はありません。iPad でチェックしただけです。

スケーラブルにしない場合は Bluetooth ロゴの PDF または EPS を使用するか、そうでない場合は png を使用します。

于 2012-07-27T17:14:18.990 に答える