|
|
|
iOS Storyboard ต้องการกดไปยังอีก 1 View โดนกดจาก storyboard ต้องทำอย่างไรคะ |
|
|
|
|
|
|
|
iOS/iPhone Storyboard and View , Multiple View (Objective-C, iPhone, iPad)
|
|
|
|
|
Date :
2013-07-29 11:40:52 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วกรณีที่อยู่ภายในเงื่อนไขหล่ะคะ
เช่น ถ้า A = 2 ให้ไป view 2
A = 3 ให้ไป view 3
A = 4 ให้ไป view 4
เช่น
Code (Objective-C)
if( [strStatus isEqualToString:@"1"] ){
UIAlertView *complete =[[UIAlertView alloc]
initWithTitle:strMessage
message:nil delegate:self
cancelButtonTitle:@"OK" otherButtonTitles: nil];
[complete show];
MainViewController *viewInfo = [[[MainViewController alloc] initWithNibName:nil bundle:nil] autorelease];
viewInfo.sMemberID = struser_id;
viewInfo.sComID = strcom_id;
[self presentViewController:viewInfo animated:NO completion:NULL];
}
else // Login Failed
{
UIAlertView *error =[[UIAlertView alloc]
initWithTitle:@":( Error!"
message:strMessage delegate:self
cancelButtonTitle:@"OK" otherButtonTitles: nil];
[error show];
ViewController *viewInfo = [[[ViewController alloc] initWithNibName:nil bundle:nil] autorelease];
[self presentViewController:viewInfo animated:NO completion:NULL];
}
|
|
|
|
|
Date :
2013-07-29 13:35:10 |
By :
tai_kook |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ if...elseif...else... คุณก็มาถูกทางแล้วน่ะครับ
|
|
|
|
|
Date :
2013-07-29 13:48:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรณีที่เปลี่ยนวิว แล้วใช้ โคด
Code (Objective-C)
[self presentViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"Page2"] animated:NO completion:NULL];
|
|
|
|
|
Date :
2013-07-29 15:11:24 |
By :
kwampien |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ ^^
|
|
|
|
|
Date :
2013-07-29 15:24:43 |
By :
tai_kook |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง identity ครับ
ใส่ชื่อให้
stroryboard id
และติ๊กถูกตรงช่อง
use storyboard id
|
|
|
|
|
Date :
2013-07-30 15:00:39 |
By :
kwampien |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-07-30 15:13:02 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|