objective-c - 如果满足条件,如何重新加载 tableView 即调用 viewDidLoad 方法
<p><p>问题是,如果满足条件,我需要一种方法来基本上删除用户放入我的数组中的所有条目数据。我是 Objective-C 和 iOS 编程的新手,但我相信解决方案可能是调用 viewDidLoad 方法,因此它实际上会使用重置为默认值的数组值刷新应用程序。如果有任何其他合乎逻辑的方法,我将不胜感激。 </p>
<p>简而言之,我需要在应用程序首次启动并且用户没有选择任何内容时刷新数组。</p>
<p>这是我需要刷新的部分。</p>
<pre><code> if (==nil) {
break; // if this condition is met the program mustbegin anew.
</code></pre>
<p>Edit* 我需要调用 - (void)viewDidLoad 方法</p>
<p>这里有更多代码。</p>
<pre><code>-(IBAction)button:(id)sender{
double sum = 0;
int i = 0;
double gradeEarned=0;
double creditHours = 3;
while (i<8){
// ];
if ( ==0) {
break;
}
if ( == radioButtonA) {
// ;
;
gradeEarned+=GradeA.intValue;
i++;
continue;
}
if ( == radioButtonB) {
// ;
;
gradeEarned+=GradeB.intValue;
i++;
continue;
}
if (== radioButtonC){
// ;
;
gradeEarned+=GradeC.intValue;
i++;
continue;
}
if ( == defaulter) {
UIAlertView *alert = [initWithTitle:@"Custom button pressed" message: delegate:self cancelButtonTitle:@"great"otherButtonTitles:nil];
;
;
;
break;
}
}
if (>0) {
sum= ()/(creditHours*gradeEarned);
NSLog(@"%f",sum);}
</code></pre>
<p>但是,如果用户单击按钮然后尝试重做一些选择,则此新代码会导致应用卡住</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果您想再次调用该代码,请将该代码包装到一个方法中,然后在 <code>viewDidLoad</code> 以及您想要的任何其他位置调用该方法。下面是一些示例代码:</p>
<pre><code>- (void)viewDidLoad {
if (==nil) {
;
}
}
- (void)refreshArray {
// refresh here
}
</code></pre>
<p>然后在需要的地方调用 <code></code>!</p>
<p>我看你是新人!如果这个答案是正确的,你可以投票或打勾!</p></p>
<p style="font-size: 20px;">关于objective-c - 如果满足条件,如何重新加载 tableView 即调用 viewDidLoad 方法,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10867080/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10867080/
</a>
</p>
页:
[1]