如何從另一個.m文件中調用此-(void){}
(函數,方法?對不起,我忘記了術語)?從另一個.m文件中調用 - (void)
我也想能夠調用它像這樣[self closeMenu];
這裏,本地.m文件是在-(void){}
:
-(void)closeMenu{
//close the menu
[UIView animateWithDuration:0.6 animations:^{
[UIView setAnimationBeginsFromCurrentState:YES]; // so it doesn't cut randomly, begins from where it is
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[menuView setFrame:CGRectMake(menuView.frame.origin.x, -menuView.frame.size.height, menuView.frame.size.width, menuView.frame.size.height)];
}];
}
好,我知道這一點,但它不執行的方法.. –
然後你搞錯了別的地方。在有人可以幫助您之前,您需要提供更多信息。 –
是的,我也面臨這個問題。讓我解釋。我使用xcode 4.3.3和我的高級4.5。高級將項目轉換爲ARC,並從svn及其工作中檢出。現在,如果我修改現有的類EmailSettingsViewController並添加一些方法,然後EmailSettingsViewController類能夠使用self調用方法,但如果我創建了EmailSettingsViewController類的實例並調用新添加的方法,它給了我錯誤「ARC問題,沒有可見的@interface for 'EmailSettingsViewController'聲明選擇器'orderNum:CustCode:'「 –