4

我刚刚开始学习如何在 iOS8 上创建今日视图小部件。我为扩展创建了一个新目标。下一步我删除了默认值viewcontroller和类,并创建了一个新UITableViewController的及其对应的方法。我实现了以下内容:

#import "TableViewController.h"
#import <NotificationCenter/NotificationCenter.h>

   @interface TableViewController () <NCWidgetProviding>
{
    NSArray *nameArray;
}
@end

@implementation TableViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    nameArray = [[NSArray alloc]initWithObjects:@"joey",@"jack",@"jill", nil];

}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 3;
}

- (void)widgetPerformUpdateWithCompletionHandler:(void (^)(NCUpdateResult))completionHandler {


    completionHandler(NCUpdateResultNewData);
}

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

    cell.textLabel.text = [nameArray objectAtIndex:indexPath.row];

    return cell;
}

我还将表格大小更改为freeform并将其高度设置为 300 像素。但我没有得到任何回报。小部件出现空。

4

1 回答 1

11

最可能的原因是您今天的扩展需要通过为self.preferredContentSize. 在您的情况下,这是(表格行数)*(每行高度)的高度,其宽度是通知中心为您提供的任何宽度。在你的viewDidLoad你需要这样的东西:

self.preferredContentSize = CGSizeMake(self.preferredContentSize.width, nameArray.count * 44.0);

假设单元格高度为 44,这在您的情况下看起来是正确的。

如果数组的大小发生变化,您需要为preferredContentSize.

于 2014-11-25T17:34:57.930 回答