我有一个问题..我想从这个函数传递选定的段索引变量:
-(IBAction)segControllIndex:(id)sender {
UISegmentedControl *segmentedControl = (UISegmentedControl *)sender;
int segValue = [segmentedControl selectedSegmentIndex];
到这里:
NSString *strURL = [NSString stringWithFormat:
@"http://phpFile.php?Name=%1@&Artist=%2@&Titel=%3@&Genere=%4@",
insertName,insertArtist,insertTitle, PASSED VALUE];
我尝试了很多东西,但我没有成功..你能帮帮我吗?
非常感谢...