- (IBAction)someButton:(id)sender {
[self changeOrientation];
}
-(void)changeOrientation
{
check = true;
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:UIDeviceOrientationLandscapeLeft] forKey:@"orientation"];
}
-(BOOL)shouldAutorotate {
if (check) {
return YES;
check = false;
}
return NO;
}
嗨,我仍然是python的新手,最近我刚刚学会了如何打开一个文件并拆分它。因此,正如在主题中所述,我被困住了,我正在尝试上面的代码,我想要打印出来的歌数= 27我得到的回报是同样的问题再次输入。除非我输入1到27的代码,否则它不起作用,只有我能得到正确的答案。我犯了什么错误?
答案 0 :(得分:0)
将item [0]设为整数或songnumber为string并修复IndexError!