繁体   English   中英

UITableView-未调用方法

[英]UITableView - methods are not being called

我有一个子视图,在其中构建了一个UITableview,已将委托和数据源设置为该子视图,但由于某种原因,未调用表方法...某人可以查看我的代码并查看我在做什么吗? 谢谢

.h文件

@interface TwitterController : UIView <UITableViewDelegate, UITableViewDataSource> { 

UIButton* btnCloseView; 
UITableView* tblTweets;
UIImageView* imgTwitterIcon;

ColorController* colorManager;

NSMutableArray* tweetsArray;
NSMutableArray* tableData;

NSString* twitterID;

}

@property (nonatomic, retain) NSString* twitterID;

- (NSMutableArray* ) getTweets; 

- (void) sendNotification : (id) sender;

@end

.m文件

#import "TwitterController.h"

@implementation TwitterController

@synthesize twitterID;

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {

    colorManager = [ColorController new];

}
return self;
}


/*- (void)drawRect:(CGRect)rect {



}*/

- (void)layoutSubviews { 

imgTwitterIcon = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"imgTwitterBird"]];
CGRect twitterIconFrame = [imgTwitterIcon frame];
twitterIconFrame.origin.x = 50.0;
twitterIconFrame.origin.y = 20.0;

tblTweets = [[UITableView alloc] initWithFrame:CGRectMake(50.0, 25.0, 220.0, 500.0)];
tblTweets.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
tblTweets.separatorColor = [colorManager setColor:176.0:196.0:222.0];
tblTweets.layer.borderWidth = 1.0;
tblTweets.rowHeight = 20.0;
tblTweets.scrollEnabled = YES;
tblTweets.delegate = self;
tblTweets.dataSource = self;

tableData = [self getTweets];

UIImage* imgCloseButton = [UIImage imageNamed:@"btnCloseWindow.png"];
CGSize imageSize = imgCloseButton.size;
btnCloseView = [[UIButton alloc] initWithFrame: CGRectMake(220.0, 550.0, imageSize.width, imageSize.height)];
[btnCloseView setImage:[UIImage imageNamed:@"btnCloseWindow.png"] forState:UIControlStateNormal];
[btnCloseView addTarget:self action:@selector(sendNotification:) forControlEvents:UIControlEventTouchUpInside];


[self addSubview:tblTweets];
[self addSubview:imgTwitterIcon];
[self addSubview:btnCloseView];
}

- (NSMutableArray*) getTweets { 

//array to hold tweets
tweetsArray = [[NSMutableArray alloc] init];

twitterID = @"Pruit_Igoe";

///set up a NSURL to the twitter API
NSURL* twitterAPI = [NSURL URLWithString:[NSString stringWithFormat:@"https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=%@&count=10", twitterID]];

//get last 10 tweets (max is 20)
TWRequest *twitterRequest = [[TWRequest alloc] initWithURL:twitterAPI 
            parameters:nil requestMethod:TWRequestMethodGET];

// Notice this is a block, it is the handler to process the response
[twitterRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
    if ([urlResponse statusCode] == 200)  {

        // The response from Twitter is in JSON format
        // Move the response into a dictionary and print
        NSError *error;        
        NSDictionary *tweetsDict = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&error];

        for(NSDictionary* thisTweetDict in tweetsDict) { 

            [tweetsArray addObject:[thisTweetDict objectForKey:@"text"]];
        }

    }
    else
        NSLog(@"Twitter error, HTTP response: %i", [urlResponse statusCode]);
}];

return tweetsArray;


}

#pragma mark Table Management

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [tableData count];
NSLog(@"%i", [tableData count]); //does not log!
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section    {
return [tableData count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"tableCell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

cell.textLabel.textColor = [UIColor colorWithRed:66.0/255.0 green:66.0/255.0 blue:66.0/255.0 alpha:1];
cell.textLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size: 13.0];
cell.textLabel.text = [tweetsArray objectAtIndex:indexPath.row];
CGRect cellFrame = [cell frame];
cellFrame.size.height = 25.0;

return cell;

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

NSString* thisTweet = [tableData objectAtIndex:indexPath.row];
}

#pragma mark Close Window

- (void) sendNotification : (id) sender { 

NSMutableDictionary* userData = [[NSMutableDictionary alloc] init];

[userData setObject:@"closeTwitter" forKey:@"theEvent"];

[[NSNotificationCenter defaultCenter] postNotificationName:@"theMessenger" object:self userInfo: userData];

}

@end

我认为您不是分配和初始化tableData 将其写入tableData = [[NSMutableArray alloc] init]; - (id)initWithFrame:(CGRect)frame方法或- (void)layoutSubviews方法中。 去尝试一下。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
NSLog(@"%i", [tableData count]);
return [tableData count];
//NSLog(@"%i", [tableData count]); //does not log!
}

如果输出为零,则tableData数组为空。 检查它tableData数组

您应该在initWithFrame:进行所有初始化(例如tblTweets )。

layoutSubviews是布置子视图的方式。

实际上,如果将所有代码从fromLayoutSubviews移到initWithFrame: fromLayoutSubviews您的代码将(应该)工作。 然后,您可以将部分代码(布局部分)移回。

编辑:当您移动初始化代码时,您可能还必须添加[tblTweets reloadData]; 就在tableData = [self getTweets];

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM