私はプログラミングが初めてなので、ここにいる人は、以下がObjective-Cで有効かどうか教えてください。ありがとう。
@interface MainViewController : UIViewController
{
id iTempStore;
}
@property (nonatomic, assign) id iTempStore;
// FirstViewController
@interface FirstViewController : UIViewController
{
MainViewController* pParent;
}
-(void) SomeFunction
{
m_pParent = [[[MainViewController]alloc]init];
NSString* pTest = [[[NSString alloc] initWithString:@"Test"]autorelease];
// Is this valid way to store an object ???
[m_pParent setITempStore: pTest];
// Check Value
NSString* pValue = [m_pParent iTempStore];
NSLog(@"Value is: %@", pValue);// Value is: Test
[m_pParent release];
}