2012-07-26 32 views
12

iOS上有字體的藍牙標誌是否有字體?一些標誌,也許還有表情符號? WiFi標誌怎麼樣?Bluetooth徽標是否可在iPhone上作爲角色使用?

編輯:第三方字體如何有這樣一個角色,我可以許可和運送?

+0

這是個好問題! +1 – Almo 2012-07-26 20:00:28

+0

幾個iPhone Unicode應用程序允許您瀏覽和搜索所有字形,包括私人使用區域,其中包含幾百個表情符號等,但沒有藍牙或WiFi,唉。 – tripleee 2012-07-28 06:40:16

回答

4

不,藍牙標誌不是字形或字體。

+4

從技術上來說,它是一個來自Younger Futhark字母表,AKA Norse符文 - ᚼ和two的兩個字符的連字符。 Futhark符文本身在Unicode中,但不是連字。 – 2012-07-27 20:14:48

+0

嗯,繃帶和徽標是兩件不同的事情。如果你可以通過編程的方式將2個字符加入到藍牙標識中,那很好。而且你似乎回答了你自己的問題。 – WrightsCS 2012-07-27 20:20:03

+0

是否有針對Unicode中的徽標的策略?例如,Apple徽標是一個專用字符U + F8FF。 Windows徽標是Wingdings字體中的專用字符。 – 2012-07-27 21:07:33

1

沒有表情符號,只是檢查我的iPad。

只要使用PDF或EPS的藍牙標誌,如果你不想擴展,或者只是使用PNG,否則。

4

就像塞瓦說的那樣,它是一個結合了符文哈格爾(ᚼ)和比爾坎(ᛒ)的人。我試圖通過結合這兩個符號來做同樣的事情。

我通過首先找到具有這兩個字符的字體來完成此操作。我最終使用了LeedsUni。你可以在這裏下載:http://www.personal.leeds.ac.uk/~ecl6tam/

您需要引用字體位於info.plist中的路徑。

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

然後我創建了兩個UIView對象(在我的情況UIButton對象),其互相重疊,使得兩個字符排列正確。根據您使用的字體,您可能需要調整UIView幀的x和y值。

我的代碼是用C#編寫的,因爲我使用Xamarin,但你應該可以在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 }); 
相關問題