fc2ブログ

@importでモジュールをロードしようとしたら「use of @import when modules are disabled」エラー

ios - use of @import when modules are disabled - Stack Overflow

Solution: Enable the modules. Go to the Target > Build Settings and set the Enable Modules (C and Objective-C modules) to YES.

とあるように、Build Settingsで「modules」で検索するなどして「Enable Modules (C and Objective-C modules)」に設定すればいけました。


objective-c@2020/08/26 18:57   | 0 comments | 0 trackbacks |

UITableViewで先頭を表示させたい

何かしらのイベントで、画面をリフレッシュしたい、そして画面のトップに持ってきたい、そう思った訳です。

iphone - UITableView scrollToRowAtIndexPath - Stack Overflow

int rowToHighlight = [[userDefaults valueForKey:@"content_row"] intValue];
NSIndexPath * ndxPath= [NSIndexPath indexPathForRow:rowToHighlight inSection:0];
[contentTableView scrollToRowAtIndexPath:ndxPath atScrollPosition:UITableViewScrollPositionTop animated:YES];

これはこれでいいのですが、テーブルに行がないと例外になってしまうんですよね。

で、上の記事のコメントに解決策が。対象テーブルに行があるかどうかを最初にチェックしろと。これでまずは解決。

tableView.numberOfRowsInSection(0) > 0


objective-c@2019/07/05 21:10   | 0 comments | 0 trackbacks |

xibでauto-layotを有効にしたら画面が最大化されなくなった

いまだにxibかよ、という話は置いておいて。

ios - How to make this xib file fill the entire screen of iPhone 6 plus - Stack Overflow

こちらで解決。

-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[[self view] setFrame:[[UIScreen mainScreen] bounds]];
}


objective-c@2019/06/29 07:02   | 0 comments | 0 trackbacks |

UITextViewでフォントサイズが変更できない

Storyboardで設定しているのに何故ってことですよ。

iphone - How to change the uitextview font size - Stack Overflow

[textView setFont:[UIFont boldSystemFontOfSize:15]];

しかも、Selectableがオンになっている必要有りとのこと。


objective-c@2019/06/23 19:15   | 0 comments | 0 trackbacks |

«  | HOME |  »

いろいろ作ったり

プロフィール

icot

Author:icot
総合電気メーカで働く会社員でしたがいい年にも関わらずコンサルに転職。お酒、ジョギング、音楽、本、料理をこよなく愛してます。ここでは、日々感じた事を書き連ねるとともに、いろいろ実験してみたりしてます。
icotfeels[at]gmail.com

これまでに感じたこと