※ ChatGPTを利用し、要約された質問です(原文:objective-c 初心者です)
Objective-C初心者が時計アプリを開発するも機能しない理由
このQ&Aのポイント
iPhoneアプリ開発を始めるため、まずは時計アプリを作成しましたが、機能しない問題が発生しました。
作成したコードをシミュレーターで動かすと、画面が真っ黒になってしまい、正常に表示されません。
何が原因で機能しないのか、教えていただけると助かります。
はじめまして。iphone アプリ開発を始めようと思い、まずは簡単なアプリからと人のまねをして時計アプリを書いております。http://www.slideshare.net/takuya0429/121216の43枚目のスライドを丸写しにしました。しかし、iPhoneシミュレーター(iphone 6.1)でシミュレーションしても真っ黒な画面が移されるだけで思うように機能しません。
なぜ機能しないかを考えられる範囲でご教授願いたい次第です。
環境はmacbook air 13inch にてXcode 4.6.3を使用しております。
以下に作成したコードを記載いたします。
//
// ViewController.h
// watch
//
// Created by motoyama kaoru on 2013/08/15.
// Copyright (c) 2013年 motoyama kaoru. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
@end
//
// ViewController.m
// watch
//
// Created by motoyama kaoru on 2013/08/15.
// Copyright (c) 2013年 motoyama kaoru. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[NSTimer
scheduledTimerWithTimeInterval:0.1
target:self
selector:@selector(update)
userInfo:nil
repeats:YES];
}
-(void)update{
NSDate *now = [NSDate date];
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"HH:mm:ss"];
self.timeLabel.text = [df stringFromDate:now];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
お礼
3が不履行でした、、 大変デリケートなんですね>< ありがとうございました!