yu-App's blog

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

2016-04-01から1ヶ月間の記事一覧

【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…