NavigationControllerにプッシュするUITableViewControllerの文字列変数に値を割り当てようとしています。
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
// now you can use cell.textLabel.text
NSMutableString *v = [[NSMutableString alloc] init];
[v setString:cell.textLabel.text];
DCAArtistViewController *dvController = [[DCAArtistViewController alloc] init];
if ([v isEqual:@"UK"]) {
dvController.st =@"75";
}
[self.navigationController pushViewController:dvController animated:YES];
私が試してみました
[dvController.st setString:@"75"];
ロードされたビューには、常にnullを表示するNSLogがあります。
NSLog(@"The st is%@",st);
私は何が間違っているのですか?私が見た例は、このdvController.st =@"75"のようなビューコントローラーのプロパティへの割り当てを示しています。
DCAArtistViewController .h
#import <UIKit/UIKit.h>
@interface DCAArtistViewController : UITableViewController{
NSString *st;
NSMutableArray *aa;
}
@property (nonatomic, retain) NSMutableArray *listOfItemss;
@property (nonatomic, retain) NSString *st;
@property (nonatomic, retain) NSMutableArray *aa;
@end
これは、DCAArtistViewController(ロードされるビュー)の開始です。
@implementation DCAArtistViewController
@synthesize listOfItemss;
@synthesize st;
@synthesize aa;
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
aa = [[NSMutableArray alloc] init];
NSLog(@"The st is%@",st);
NSLog(@"The self st is%@",st);