So what I have is an NSString that I want to be able to access in another class. In my RootViewController.h I have:
@interface RootViewController : UITableViewController
+(NSMutableString*)MY_STR;
@property (nonatomic, readwrite, retain) NSString *MY_STR;
@end
In my RootViewController.m:
static NSString* MY_STR;
@synthesize MY_STR;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
//The NSDictionary and NSArray items (listOfItems, etc.) are called at top so don't worry about them
NSDictionary *dictionary = [listOfItems objectAtIndex:indexPath.section];
NSArray *array = [dictionary objectForKey:@"MovieTitles"];
MY_STR = [array objectAtIndex:indexPath.row];
}
+(NSString*)MY_STR{
return MY_STR;
}
- (void)dealloc {
[MY_STR release];
[super dealloc];
}
And now in my NewViewController class I want to write to the NSString MY_STR so in my .m I have:
#import "RootViewController.h"
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *dictionary = [listOfItems objectAtIndex:indexPath.section];
NSArray *array = [dictionary objectForKey:@"MovieTitles"];
[RootViewController MY_STR] = [array objectAtIndex:indexPath.row];
}
But on this line:
[RootViewController MY_STR] = [array objectAtIndex:indexPath.row];
I am receiving this error: "Assigning to 'readonly' return result of an objective-c message not allowed"
Any help would be awesome thanks!