0

どんな助けでも大歓迎です、私はかなり長い間これにこだわっています。UITableView にコンテンツを追加し、データをリロードしましたが、何も起こらず、parkinglistviewcontroller で何が起こっているのかわかりません。さて、ここに私が使用している私のコードがあります。

.m ファイル

@implementation ParkingListViewController
@synthesize objCustomCell;

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

- (void)viewDidLoad
{
    [super viewDidLoad];
    arrParkingList = [[NSMutableArray alloc] init];
    appDelegate = [[UIApplication sharedApplication] delegate];
    locationManager = [[CLLocationManager alloc] init];
    arrAnnotations = [[NSMutableArray alloc] init];
    // Do any additional setup after loading the view from its nib.
}

-(void)viewWillAppear:(BOOL)animated
{
    [self locate];
    [parkingMap setRegion:MKCoordinateRegionMakeWithDistance(parkingMap.userLocation.coordinate, 5, 5) animated:YES];
}

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

- (void)dealloc
{
    [locationManager release];
    [tblParkingList release];
    [parkingMap release];
    [super dealloc];
}

- (void)viewDidUnload
{
    [tblParkingList release];
    tblParkingList = nil;
    [parkingMap release];
    parkingMap = nil;
    [super viewDidUnload];
}


#pragma mark - Tableview Methods

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

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return arrParkingList.count;
}

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

    if (cell == nil)
    {
        [[NSBundle mainBundle] loadNibNamed:@"ParkingCustomCell" owner:self options:nil];
        cell = self.objCustomCell;
        self.objCustomCell = nil;
    }

    ClsParking *objTmpParking = [arrParkingList objectAtIndex:indexPath.row];
    cell.lblTitle.text = objTmpParking.strLocation;
    cell.imgUserImage.layer.masksToBounds = YES;
    cell.imgUserImage.layer.cornerRadius = 20;
    [cell.imgUserImage setImageWithURL:[NSURL URLWithString:objTmpParking.strImageUrl] placeholderImage:nil];
    return  cell;
}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 68;
}

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

    ClsParking *objParking = [arrParkingList objectAtIndex:indexPath.row];

    float fltLatitude = [objParking.strLatitude floatValue];
    float fltLongitude = [objParking.strLongitude floatValue];

    CLLocationCoordinate2D pLocation = CLLocationCoordinate2DMake(fltLatitude, fltLongitude);

    [self setMapCenter:pLocation];

}

- (IBAction)btnAddTapped:(id)sender
{
    ParkingNotificationViewController *objParkingNotificationViewController =[[ParkingNotificationViewController alloc] initWithNibName:@"ParkingNotificationViewController" bundle:nil];
    [self presentViewController:objParkingNotificationViewController animated:YES completion:nil];
    [objParkingNotificationViewController release];
}

- (IBAction)btnBackTapped:(id)sender
{
    [self.navigationController popViewControllerAnimated:YES];
}



@end

.h ファイル

@class ParkingCustomCell;
@interface ParkingListViewController : UIViewController <UITableViewDataSource,UITableViewDelegate,CLLocationManagerDelegate,MKMapViewDelegate>
{
    IBOutlet UITableView *tblParkingList;
    NSMutableArray *arrParkingList;
    AppDelegate *appDelegate;
    CLLocationManager *locationManager;
    IBOutlet MKMapView *parkingMap;
    NSMutableArray *arrAnnotations;
}
@property (nonatomic,retain) IBOutlet ParkingCustomCell *objCustomCell;

- (IBAction)btnAddTapped:(id)sender;
- (IBAction)btnBackTapped:(id)sender;

@end

そして、これが私のparkingcustomcellクラスです

@implementation ParkingCustomCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

- (void)dealloc {
    [_lblTitle release];
    [_imgUserImage release];
    [super dealloc];
}
@end
4

3 に答える 3

1

AdamG のコメントに加えて、arrParkingList配列にスペースを割り当てていることがわかりますが、値を追加/初期化する場所がわかりません。

于 2013-08-24T19:39:18.090 に答える
0

クラスをテーブルビューのデリゲートおよびテーブルビューのデータソース デリゲートとして設定する必要があります。tableView からバーの左側のアイコンにコントロールをドラッグするか、次のコード行をアプリに追加することで、ストーリーボードでこれを行うことができます。

 self.tableView.delegate = self;
 self.tableView.dataSource = self;

また、tableView が .h ファイルでアウトレットとして宣言されていることを確認してください。上記の例では、「tableView」というアウトレットとしてドラッグしたと想定しています。

それが役立つことを願っています!

于 2013-08-24T19:36:13.650 に答える