uinavigationcontroller – 构造MonoTouch.Dialog应用程序

前端之家收集整理的这篇文章主要介绍了uinavigationcontroller – 构造MonoTouch.Dialog应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Xamarin.com的例子可以建立基本的M.T.对话框应用程序,但如何构建现实生活中的应用程序?

你做:

1)从那里创建一个DialogViewController并树上每个视图/ RootElement,

2)为每个视图创建一个DialogViewController,并使用UINavigationController并根据需要推送它

根据你的答案,更好的反应是怎样的?我已经构建了示例任务应用程序,所以我了解向表中添加元素,单击它以转到“下一个”视图进行编辑,但是如何点击进行非编辑?如何点击一个按钮,如果答案是1,请去下一个视图?

修订:

可能没有一个正确的答案,但是我想出来的似乎对我们有用.来自上面的第2号是所选择的,下面是当前存在的代码示例.我们所做的是在AppDelegate中创建一个导航控制器,并在整个应用程序中访问它,如下所示:

  1. public partial class AppDelegate : UIApplicationDelegate
  2. {
  3. public UIWindow window { get; private set; }
  4. //< There's a Window property/field which we chose not to bother with
  5.  
  6. public static AppDelegate Current { get; private set; }
  7. public UINavigationController NavController { get; private set; }
  8.  
  9. public override bool FinishedLaunching (UIApplication app,NSDictionary options)
  10. {
  11. Current = this;
  12. window = new UIWindow (UIScreen.MainScreen.Bounds);
  13. NavController = new UINavigationController();
  14.  
  15. // See About Controller below
  16. DialogViewController about = new AboutController();
  17. NavController.PushViewController(about,true);
  18.  
  19. window.RootViewController = NavController;
  20. window.MakeKeyAndVisible ();
  21. return true;
  22. }
  23. }

那么每个Dialog都有一个这样的结构:

  1. public class AboutController : DialogViewController
  2. {
  3. public delegate void D(AboutController dvc);
  4. public event D ViewLoaded = delegate { };
  5.  
  6. static About about;
  7. public AboutController()
  8. : base(about = new About())
  9. {
  10. Autorotate = true;
  11. about.SetDialogViewController(this);
  12. }
  13.  
  14. public override void LoadView()
  15. {
  16. base.LoadView();
  17. ViewLoaded(this);
  18. }
  19. }
  20.  
  21. public class About : RootElement
  22. {
  23. static AboutModel about = AboutVM.About;
  24.  
  25. public About()
  26. : base(about.Title)
  27. {
  28. string[] message = about.Text.Split(...);
  29. Add(new Section(){
  30. new AboutMessage(message[0]),new About_Image(about),new AboutMessage(message[1]),});
  31. }
  32.  
  33. internal void SetDialogViewController(AboutController dvc)
  34. {
  35. var next = new UIBarButtonItem(UIBarButtonSystemItem.Play);
  36. dvc.NavigationItem.RightBarButtonItem = next;
  37. dvc.ViewLoaded += new AboutController.D(dvc_ViewLoaded);
  38. next.Clicked += new System.EventHandler(next_Clicked);
  39. }
  40.  
  41. void next_Clicked(object sender,System.EventArgs e)
  42. {
  43. // Load next controller
  44. AppDelegate.Current.NavController.PushViewController(new IssuesController(),true);
  45. }
  46.  
  47. void dvc_ViewLoaded(AboutController dvc)
  48. {
  49. // Swipe location: https://gist.github.com/2884348
  50. dvc.View.Swipe(UISwipeGestureRecognizerDirection.Left).Event +=
  51. delegate { next_Clicked(null,null); };
  52. }
  53. }

根据需要创建一个子类的元素:

  1. public class About_Image : Element,IElementSizing
  2. {
  3. static NSString skey = new NSString("About_Image");
  4. AboutModel about;
  5. UIImage image;
  6.  
  7. public About_Image(AboutModel about)
  8. : base(string.Empty)
  9. {
  10. this.about = about;
  11. FileInfo imageFile = App.LibraryFile(about.Image ?? "filler.png");
  12. if (imageFile.Exists)
  13. {
  14. float size = 240;
  15. image = UIImage.FromFile(imageFile.FullName);
  16. var resizer = new ImageResizer(image);
  17. resizer.Resize(size,size);
  18. image = resizer.ModifiedImage;
  19. }
  20. }
  21.  
  22. public override UITableViewCell GetCell(UITableView tv)
  23. {
  24. var cell = tv.DequeueReusableCell(skey);
  25. if (cell == null)
  26. {
  27. cell = new UITableViewCell(UITableViewCellStyle.Default,skey)
  28. {
  29. SelectionStyle = UITableViewCellSelectionStyle.None,Accessory = UITableViewCellAccessory.None,};
  30. }
  31. if (null != image)
  32. {
  33. cell.ImageView.ContentMode = UIViewContentMode.Center;
  34. cell.ImageView.Image = image;
  35. }
  36. return cell;
  37. }
  38.  
  39. public float GetHeight(UITableView tableView,NSIndexPath indexPath)
  40. {
  41. float height = 100;
  42. if (null != image)
  43. height = image.Size.Height;
  44. return height;
  45. }
  46.  
  47. public override void Selected(DialogViewController dvc,UITableView tableView,NSIndexPath indexPath)
  48. {
  49. //base.Selected(dvc,tableView,path);
  50. tableView.DeselectRow(indexPath,true);
  51. }
  52. }

@miquel

目前的工作流概念是一个应用程序,它以Default.png的jpg开始,该JPG可以逐渐进入第一个视图,并具有可以移动到主应用程序的流控制按钮.这个观点,我曾经在M.T.D. (MonoTouch.Dialog),它是具有图像的文本行的表.当每一行被单击时,它将移动到具有行/文本的另一个视图.

该应用程序还支持应用内购买,所以如果客户希望购买更多的产品,然后切换到另一个视图来处理购买.这部分是切换到M.T.D.的主要原因,正如我认为M.T.D.将是完美的.

最后,会有一个设置视图来重新启用购买等.

PS如何知道应用程序何时未被最小化?我们想再次显示褪色.

解决方法

我一直在问自己同样的问题.我使用了 Funq依赖注入框架,并为每个视图创建一个新的DialogViewController.这是我以前使用过的开发ASP.NET MVC应用程序的方法,这意味着我可以保持控制器逻辑很好地分离.我为每个视图子类DialogViewController,允许我将控制器所需的任何应用程序数据传递给控制器​​.我不知道这是否是推荐的方法,但到目前为止,它正在为我工​​作.

我也看过TweetStation应用程序,我发现它是一个有用的参考,但相关的文档具体说,它并不是试图成为一个如何构造MonoTouch应用程序的例子.

猜你在找的iOS相关文章