I've gone for a simple approach, I've created some NSString variables which I set when the view load...
strKeptDesc = txtDescription.text;
NSLog(@"KDesc =#%@# CDesc =#%@#",strKeptDesc, txtDescription.text);
Which works as excepted and output the values you'd expect.
However in my db commit function, when I check the variables I get errors...
NSMethodSignature: 0x5c3fa80># CDesc =#Gas bill3#
Program received signal: “EXC_BAD_ACCESS”.
In my h file I have
NSString *strKeptDesc;
}
@property (nonatomic, retain) NSString *strKeptDesc;
I synthesize too.