удаление предупреждений, вызванных пользовательским классом UITableViewCell - PullRequest
1 голос
/ 18 марта 2011

Я получаю следующие предупреждения в коде: enter image description here

Должен ли я просто удалить все эти методы из кода или что?

#import "ReservationCell.h"


@implementation ReservationCell
@synthesize origin;
@synthesize destination;
@synthesize time_range;

    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        }
        return self;
    }

    - (void)dealloc
    {
        [origin release];
        [destination release];
        [time_range release];
        [super dealloc];
    }

    - (void)didReceiveMemoryWarning
    {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];

        // Release any cached data, images, etc that aren't in use.
    }

    #pragma mark - View lifecycle

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    }

    - (void)viewDidUnload
    {
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    }

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    }

    @end

Также я получаюпоследнее предупреждение компоновщика, кто-нибудь знает, как это исправить?enter image description here

1 Ответ

1 голос
/ 18 марта 2011

Все эти предупреждения относятся к методам UIViewController.UITableViewCell - это UIView, поэтому он не будет отвечать ни на один из них.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...