1

iPhone MapView (Google コードの下) を使用するアプリケーションを作成しようとしています。UI全体を手書きせずに、つまりIBをまったく使用せずに、このことをアプリケーションに統合する方法を理解できません。

Interface Builder を使用してすべてのメニューなどを作成し、MapView を追加するにはどうすればよいですか? IB コンポーネントにするために MapView を編集する必要がありますか?

ありがとう!

編集:

@pgb

これが私のコードです。まだ空白の UIView が表示されています。IB 側ですべてを接続しています。

//
//  NewTestViewController.h
//  NewTest
//

#import <UIKit/UIKit.h>

@interface NewTestViewController : UIViewController {
 UIView* mapPlaceholder;

}
@property (nonatomic, retain) IBOutlet UIView* mapPlaceholder;
@end

//
//  NewTestViewController.m
//  NewTest
//

#import "NewTestViewController.h"
#import "MapView.h"

@implementation NewTestViewController
@synthesize mapPlaceholder;



// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        MapView *mapView = [[[MapView alloc] initWithFrame:
        [[UIScreen mainScreen] applicationFrame]] autorelease];
  [mapPlaceholder addSubview:mapView];
    }
    return self;
}


/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/


/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];
}
*/


/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/

- (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.
}

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


- (void)dealloc {
 [mapPlaceholder.subviews release];
    [super dealloc];
}

@end

PBGのおかげでそれを理解したことはありません

4

3 に答える 3

2

おそらく IB でインターフェイス全体を作成し、空UIViewをプレースホルダー ビューとして追加してから、インスタンスをビュー階層addSubview:に追加するために使用できます。MapView

プレースホルダー ビューは として定義できるため、インスタンスからIBOutletを追加できます。MapViewUIViewController

于 2009-09-14T23:34:13.860 に答える
1

IBでは、UIViewを追加してから、ビューのタイプを任意のカスタムUIViewに変更できます。MKMapViewと同じように、MapViewがUIViewをサブクラス化すると想定しています...

于 2009-09-15T15:44:05.373 に答える
0

iPhone MapView (Google コードの下) を使用するアプリケーションを作成しようとしています。

なぜ MapKit を使わないのですか? 確かに IB にはそのライブラリに MKMapView が付属しています。

于 2009-09-14T23:16:55.723 に答える