yu-App's blog

iPhoneアプリ開発におけるメモ的なもの。

Swift

【swift】attributedTextで装飾

let text = "aaaaaaaa" let attrText = NSMutableAttributedString(string: text) let attributes = [NSFontAttributeName:UIFont.systemFontOfSize(detailFontSize*2, weight:UIFontWeightThin)] attrText.addAttributes(attributes, range: NSMakeRange(te…

【swift】UITextFieldがキーボードで隠れる場合の対処法

メモメモ参考サイト qiita.com

【swift】 UILabelのfontにstyleを適用する方法

XcodeでのUILabelのフォントでstyleを指定できるのにコードではそれらしきものが見つからなくて調べた。メモ 参考ページ: stackoverflow.com // Weights used here are analogous to those used with UIFontDescriptor's UIFontWeightTrait. // See the UIFo…

swift2.0 メールを送信する

まずは準備 import MessageUI class ViewController: UIViewController,MFMailComposeViewControllerDelegate { ・ ・ ・ func sendMail() { //メールを送信できるかチェック if MFMailComposeViewController.canSendMail()==false { print("Email Send Fail…

【Swift】初めのSwift言語。

久々にブログを更新します。 今回は、iPhoneアプリを作る為の新しい言語「Swift」を学びました。 今までの「objective-c」言語との違いをまとめようと思います。 ======================================== 参考サイト↓ まず、Appleの公式ドキュメント The S…