Back to Howawan's Homepage to index to Yahoo's Homepage

iPhon1-0901292211/%dをさぐる。 ......

inhalts

iPhon1-0901292211@文字列だと、hogeappdelegate.hに  NSString *hogeText;とポインタをたてておけば、buttonのインスタンス関数内にhogeappdelegate.mに hogeText= @”hallo world!”ともってくれば、表示できる。
Method 呼び出しは[ objct method:arg1]となる。
Propertyは hoge.hで@property hoge.mで@synthesizeで対応させる。
数字に関しては、
- (IBAction)GO:(id)sender{
int a,b,c;
a = 5;
b = 5;
c = a + b;
transText = [NSString stringWithFormat:@”%d”,c];//put number
numberField.text = transText;
}で計算表示出来た。やっと。