-4
海我是新來的Xcode我的代碼如下,如何從一個類傳遞int值到另一個在Xcode
-(void)XYZ:(NSString *)id1 {
int id2 = [id1 intValue];
NSLog(@"%d",id2);
}
我需要像下面的其他類使用ID2值,
-(NSArray *)Vehicles {
NSString *urlString=[NSString stringWithFormat:@"http://www.xxxxxx.com/xxx_webservice/vehiclelist.php?uid=%d&format=json",id2];
}
請指導我提前通過價值感謝...