-
UIImageViewにて、画像を自動リサイズ
self.contentMode = UIViewContentModeScaleAspectFill; self.clipsToBounds = YES; UIViewContentModeScaleToFillVie […] -
アラートの出し方
・ボタンを1つ表示する場合 -(void)hoge { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"完了" message:@& […] -
文字列の空文字判定
if (![str isEqualToString:@""] && ![str isKindOfClass:[NSNull class]]) { // 文字列が空でない […] -
NSMutableArrayに配列を追加
[_sceneListModel addObjectsFromArray:model]; -
文字列の比較
[user.REPEATFLG isEqualToString:@"1"] -
三項演算子
shopnameLabel.text = (shopModel.SHOPNAME != @"" && ![shopModel.SHOPNAME isKindOfClas […] -
NSMutableArrayを別インスタンスにコピーする
NSMutableArray *newArray = [[NSMutableArray alloc] initWithArray:oldArray copyItems:YES]; -
NSStringの結合方法
NSString *object1 = [NSString stringWithCString:"ABC"]; NSString *object2 = [NSString stringWithCStr […] -
UINavigationControllerの戻るボタンを消す
UINavigationControllerの戻るボタンで、何も設定しないと前画面のタイトルが設定される。 この戻るボタンを表示しないようにするには以下のように設定する。 [self.navigationItem set […] -
NSIntegerの初期化
NSStringみたいに*はいらない。 NSInteger count = 0;