【问题标题】:Can't display on the screen, Xcode6.1.1无法在屏幕上显示,Xcode6.1.1
【发布时间】:2015-09-05 12:32:48
【问题描述】:

所以我整天都在寻找并修复了一些,但仍然无法显示。所以,这是交易:

我已经开始写 Xcode 3 天了,我在网上关注斯坦福的讲座,所以代码看起来像讲座代码。尽管几乎所有内容都与讲座代码相同,但我的代码无法显示从互联网上获取的单词。目的是建立一个字典,如果我能在我的模拟设备 iPhone 6 上看到单词,我会继续写作。

我无法理解的是,我向窗口发送了一条消息并说它采用导航控制器,我在其中推送了 WordListViewController(您可以在下面的代码中的 AppDelegate.m 段中看到)。

你可以在下面找到我的代码:

WordListTableViewController.h

//
//  WordListTableViewController.h
//  Vocabulous
//
//  Created by user30357 on 6/19/15.
//  Copyright (c) 2015 user30357. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface WordListTableViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>{
    NSMutableDictionary *words;
    NSArray *sections;
}

@end

WordListTableViewController.m

//
//  WordListTableViewController.m
//  Vocabulous
//
//  Created by user30357 on 6/19/15.
//  Copyright (c) 2015 user30357. All rights reserved.
//

#import "WordListTableViewController.h"

@interface WordListTableViewController ()
@property (nonatomic, retain) NSMutableDictionary *words;
@property (nonatomic, retain) NSArray *sections;
@end

@implementation WordListTableViewController

@synthesize words, sections;

- (NSMutableDictionary *) words{
    if(!words){
        NSURL *wordsURL = [NSURL URLWithString:@"http://cs193p.stanford.edu/vocabwords.txt"];
        words = [[NSMutableDictionary dictionaryWithContentsOfURL:wordsURL] retain];
    }
    return words;
}

- (NSArray *) sections{
    if(!sections){
        sections = [[[self.words allKeys] sortedArrayUsingSelector:@selector(compare:)] retain];
    }
    return sections;
}

- (void)viewDidLoad {
    [super viewDidLoad];

    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)dealloc{
    [words release];
    [sections release];
    [super dealloc];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return self.sections.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    NSArray *wordsInSection = [self.words objectForKey:[self.sections objectAtIndex:section]];
    return wordsInSection.count;
}

- (NSString *) wordAtIndexPath:(NSIndexPath *) indexPath{
    NSArray *wordsInSection = [self.words objectForKey:[self.sections objectAtIndex:indexPath.section]];
    return [wordsInSection objectAtIndex:indexPath.row];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *identifier = @"WordListTableViewCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];

    if(cell == nil)
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];

    // Configure the cell...
    cell.textLabel.text = [self wordAtIndexPath:indexPath];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell;
}


/*
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    // Return NO if you do not want the specified item to be editable.
    return YES;
}
*/

/*
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        // Delete the row from the data source
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
    } else if (editingStyle == UITableViewCellEditingStyleInsert) {
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    }   
}
*/

/*
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
}
*/

/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
    // Return NO if you do not want the item to be re-orderable.
    return YES;
}
*/

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

AppDelegate.h

//
//  AppDelegate.h
//  Vocabulous
//
//  Created by user30357 on 6/19/15.
//  Copyright (c) 2015 user30357. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;


@end

AppDelegate.m

//
//  AppDelegate.m
//  Vocabulous
//
//  Created by user30357 on 6/19/15.
//  Copyright (c) 2015 user30357. All rights reserved.
//

#import "AppDelegate.h"
#import "WordListTableViewController.h"
@interface AppDelegate ()

@end

@implementation AppDelegate

@synthesize window;


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.

    WordListTableViewController *wltvc = [[WordListTableViewController alloc] init];
    UINavigationController *nav = [[UINavigationController alloc] init];
    [nav pushViewController:wltvc animated:NO];
    [wltvc release];
    [window addSubview:nav.view];
    [window makeKeyAndVisible];
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end

我所有的这 4 个课程。此外,我的故事板有 WordListTableViewController 类,因为我删除了 ViewController。

希望你能帮我解决这个问题,因为我真的快要发疯了!

从现在开始感谢!

【问题讨论】:

  • 你在使用故事板吗?在您的故事板中,您是否将视图控制器命名为 WordListTableViewController ?
  • 我没有使用故事板和 Xcode6.1.1
  • 你没有使用故事板那么你在哪里创建 UI ?
  • 不是用 AppDelegate.m 中的代码创建的吗?它可能没有被创建,我不知道。我只是想,使用代码我不需要故事板。有点迷茫。
  • 不,你不是在创造。请从这里开始你的开发:appcoda.com/uitableview-tutorial-storyboard-xcode5

标签: ios objective-c xcode6


【解决方案1】:

你没有初始化窗口。这是我启动项目的方法更改它。

AppDelegate.h

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) UINavigationController *navigator;

@synthesize他们。

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    self.window=[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    LoginViewController *controller=[[LoginViewController alloc] init];
    navigator = [[UINavigationController alloc] initWithRootViewController:controller];
    [self.window setRootViewController:navigator];
    [self.window makeKeyAndVisible];


    // Override point for customization after application launch.
    return YES;
}

【讨论】:

  • 给我这个错误:应用程序窗口应该在应用程序启动结束时有一个根视图控制器
  • 很抱歉我忘记了一段代码来设置窗口的根控制器。无论如何,我编辑了我的答案
  • 这次:不支持多次推送同一个视图控制器实例。非常感谢您的帮助!
  • 好的,我会给你我的 didFinishLaunchingWithNoOptions 方法,用你的项目改变它。它应该可以工作。
  • 如果您需要更多解释,我会在这里为您提供帮助。不客气。
猜你喜欢
  • 2017-11-06
  • 2013-09-30
  • 2017-02-16
  • 2016-10-20
  • 2020-04-06
  • 2021-03-04
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多