开发者

Modal view controller is slow to appear

I'm having a hard time debugging an issue when presenting a modal view controller. I'm seeing a pause of between 0.5 seconds and 1 second between viewWillAppear being called and viewDidAppear being called on the presented (table view) controller. I tried replacing this with a bare bones table view controller to see if the issue was in the controller calling presentModalController, and it appeared quickly as expected.

I've peppered both controllers with NSLog statements in an attempt to diagnose the issue, but can't narrow it down further than a delay between viewWillAppear and viewDidAppear.

Short of rewriting the controller line by line, what's开发者_开发百科 the best way for me to find out where the issue is? Are there any usual suspects here I should be aware of?

Edit : update with problematic code

The table view is displaying 2 cells, each containing a text field.

I have UITextField properties for each of the 2 text fields

@property (nonatomic, retain) IBOutlet UITextField *itemTextField;

and assign text fields to these properties as follows :

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

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

        if (indexPath.row == 0) {
            UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(110, 10, 185, 30)];
            textField.delegate = self;

            cell.textLabel.text = @"Item";
            textField.placeholder = @"Enter item name";
            textField.keyboardType = UIKeyboardTypeDefault;
            textField.returnKeyType = UIReturnKeyNext;
            self.itemTextField = textField;
            [cell addSubview:textField];
            [textField release];
        }
    }
    return cell;
}

I've left out the second row, but the code is the same.

If I comment out

self.itemTextField = textField;

the view loads as expected, but uncommented causes the slight delay I've been seeing. Should I be initialising this somewhere else rather than in cellForRowAtIndexPath? I'm a bit stumped.


Use Time Profiler in Instruments to see which is the offending code. Also note that excessive logging itself can cause noticeable speed degradation. Likely cases are costly methods to provide data to your table view, custom heights perhaps? Or loading of content from a network synchronously.


Got the same problem. Just fixed it with barrym's comment. Just move the becaomeFirstResponder code to viewDidAppear

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜