문제

How would I go about implementing something in C# for iOS, that looks and feels like the MonoTouch.Dialog controls, without actually using Monotouch.Dialog?

도움이 되었습니까?

해결책

It is the same amount of code if you use ObjC or Xamarin.iOS. Just slightly different syntax.

Your alternatives are

  • MT.Dialog (if you want to do the UI in code). This will dramatically reduce the complexity and MT.Dialog was designed exactly for the creation of quick and simple settings screens. In most cases, you will want to subclass the predefined elements to get best results.
  • Static UITableViewCells if you want to use Interface Builder. This allows you to create your UI in IB (or the iOS Designer built into Xamarin Studio). You can find tutorials on the web, like this one.
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top