yu-App's blog

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

2016-01-01から1年間の記事一覧

【objective-c】アラート ios objective-c

今更ながらobjective-cでのアラートをメモ。 よく忘れるので。 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"タイトル" message:@"メッセージ?" preferredStyle:UIAlertControllerStyleAlert]; [alert addAction:[UIAlertAct…

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