我真的需要知道如何在ipad中制作dropdownTree菜单。我需要在我的ipad应用程序中创建它。如果有人知道,请与我分享。非常感谢。
答案 0 :(得分:1)
Apple不为GUI树提供本机组件。自己写一个可能需要很长时间。我宁愿使用webview并使用javascript树组件,例如jstree或Tree Menu。
您可以使用以下方法轻松与webview进行互动:
- (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script
// UIWebViewDelegate method, to communicate from within the webview with the native objective-c code
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType