我相信這是一個很不好的問題,但我無法在互聯網上的任何地方找到它,或者可能看起來錯了。將多個任務添加到接口。 Xcode
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UIImagePickerControllerDelegate, UINavigationControllerDelegate>
{
//how do i fit this code--> idUIAccelerometerDelegate
//into the interface where it is the only place it can work?
IBOutlet UIImageView *imageView;
UIImage *image;
UIImagePickerController *imagePicker;
UIImagePickerController *imagePicker2;
//the code above is already linked with the @interface at the top thingy.
//but now i also want to link the @accelerometer but it won't let me without any errors.
float valueX;
float valueY;
}
@property (nanotomic,strong) IBOutlet UIButton *snow;
-(void)awakeAccelerometer;
-(void)acc
- (IBAction)takePhoto;
- (IBAction)chooseExisting;
@end
非常感謝您的幫助,如果我浪費了您的時間。如果您願意,可以通過一切方式投票給我。
我可以建議你重新格式化你的問題/代碼嗎?我不確定你在這裏問什麼。 – EightyEight
所以我想添加加速度計的參考,但也在頂部的界面圖像參考,但它不會讓我。要麼只有一個或另一個。那麼我如何在不發生任何錯誤的情況下爲他們兩人打廣告? – SynicMist