Takılıyorum :(
Uygulamamda CLLocationManager'dan yeni bir konum güncellemesi geldiğinde her zaman bir güncellemeye ihtiyacım var XIB/NIB dosyalarını kullanmıyorum, kodladığım her şeyi programlı olarak yaptım. :?
.h Xibili UILabel, XIB dosyaları olmadan programlı olarak nasıl güncellenir?
.m
...
-(void)loadView{
....
UILabel* theLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0,0.0,320.0,20.0)];
theLabel.text = @"this is some text";
[self.view addSubView:theLabel];
[theLabel release]; // even if this gets moved to the dealloc method, it changes nothing...
}
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
NSLog(@"Location: %@", [newLocation description]);
// THIS DOES NOTHING TO CHANGE TEXT FOR ME... HELP??
[self.view.theLabel setText:[NSString stringWithFormat: @"Your Location is: %@", [newLocation description]]];
// THIS DOES NOTHING EITHER ?!?!?!?
self.view.theLabel.text = [NSString stringWithFormat: @"Your Location is: %@", [newLocation description]];
}
...
Herhangi bir fikir veya yardım
(bu tüm el
@interface TestViewController : UIViewController
UILabel* theLabel;
@property (nonatomic, copy) UILabel* theLabel;
@end
sıkışmış öyleyse eğer biraz gafseli görünüyorsa lütfen beni affet.) Gerekirse daha fazla bilgi sağlayabilirim.
NSLog doğru konumu gösteriyor mu? – GorillaPatch
Bunu mu demek istediniz: viewDidLoad? –
@Radek Yükleyiciye koydum, UILabel viewDidLoad'a konmalı mı? Bu geçersiz kılma noktası mı? Ve neden bir kullanıcı arabirimi programsal olarak oluşturmak için UILabel mutable –