このコードを使用して、ユーザーがボタンをクリックしたときにiOSアプリでページを開きますが、ユーザーがクリックすると、ページの上部に灰色のバーが表示されます。どうすればこれを取り除くことができますか?
- (IBAction) colours:(id)sender {
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:colourPickerView];
[self presentViewController:navigationController animated:YES completion: nil];
}