我正在 ios(Xamarin) 中创建 SlideNavigation Drawer。我在以下链接的帮助下创建了
https://github.com/thedillonb/MonoTouch.SlideoutNavigation
代码可以按我的意愿正常工作。
代码 :
class DummyControllerLeft : DialogViewController
{
float labelHeight;
UIImageView profileImage;
public DummyControllerLeft()
: base(UITableViewStyle.Plain, new RootElement(""))
{
this.labelHeight = labelHeight;
Root.Add(new Section()
{
new StyledStringElement("Home", () => NavigationController.PushViewController(new HomeViewController(), true)) { TextColor = UIColor.White, BackgroundColor = UIColor.Clear, Font = UIFont.FromName("Helvetica-Bold", 16f) },
});
TableView.SeparatorStyle = UITableViewCellSeparatorStyle.None;
TableView.BackgroundColor = UIColor.Clear.FromHexString("#0072BA", 1.0f);
}
}
但是正如你所看到的,我只能String
在我的代码案例中添加名称,它是“Home”。现在我想添加Image
.
我在谷歌和 SO 中搜索了很多东西。但没有什么是我的工作。
任何帮助将不胜感激。