问题标签 [cosmicmind]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1217 浏览

swift - CosmicMind/Material Textfield 的 PlaceHolder 在左视图上

我正在使用CosmicMind / Material框架试图在占位符的左侧放置一个图标,但占位符和图像相互重叠这是我的代码

这就是结果

在此处输入图像描述

在此处输入图像描述

我究竟做错了什么 ?提前致谢

0 投票
1 回答
126 浏览

ios - UITableViewController 闪烁行为

我有与UITableViewController闪烁有关的问题。

此视频链接中对此进行了介绍。

我正在展示这样的 UITableViewController:

和来自lib的方法:

MainView().

0 投票
2 回答
274 浏览

swift - 如何将 NavigationDrawerController 和 PageTabBarController 添加到同一个项目

0 投票
1 回答
678 浏览

swift3 - Cosmicmind/Material:NavigationController 和 ToolbarController 的区别

我正在开发一个在 Xcode8 中使用 swift3 编写的应用程序。我的应用程序实现了 Cosmicmind-material-framework。

在工作时,我试图了解 NavigationController 和 ToolbarController 之间的区别是什么。(也许有人可以另外解释 PageTabBarController 的区别)

我真的不明白,因为导航控制器似乎包含一个工具栏控制器。那么,如果我只能使用 navigationController 并在那里准备所有“工具栏项”,我为什么要同时使用两者。

很快到应用程序:

  • 导航抽屉控制器
    • 导航控制器
      1. 站点 1
      2. 站点 2
      3. 页面标签栏控制器
        1. 网站红
        2. 网站蓝
        3. 网站黄色
0 投票
0 回答
75 浏览

ios - PageTabBarController 作为自定义类

如何为故事板中的视图控制器设置自定义类以指向 PageTabBarController

在此处输入图像描述

目前我得到

这是我正在编辑的原始代码https://github.com/CosmicMind/Samples/tree/master/Material/Programmatic/PageTabBarController

0 投票
2 回答
546 浏览

swift3 - Cosmicmind/Material:如何在不使用 AppDelegate.swift 的情况下实现 PageTabBarController?

众所周知,要实现 PageTabBarController,我们需要在 AppDelegate.swift 中插入这些代码:

现在,当我想打开匹配数据的详细信息时,我需要使用 PageTabBarController。我的问题是,如何在不将这些代码插入 AppDelegate.swift 的情况下实现它,因为它会为第一个应用程序启动打开我的 MatchViewController(从 PageTabBarController 扩展)。

我试过这段代码,但它会导致崩溃,它指向我的 AppDelegate.swift

0 投票
0 回答
37 浏览

cosmicmind - 长按时如何禁用错误文本字段中的复制粘贴菜单(放大镜出现)

func canPerformAction(action: Selector, withSender sender: AnyObject?) -> Bool { // 禁用复制,全选,粘贴 if action == #selector(UIResponderStandardEditActions.copy( :)) || 动作 == #selector(UIResponderStandardEditActions.selectAll( :)) || action == #selector(UIResponderStandardEditActions.paste(_:)) { return false } // 默认 return super.canPerformAction(action, withSender: sender) }

0 投票
1 回答
739 浏览

ios - ios材料设计宇宙思维标签栏实现

目前我 在 ios 项目中使用材料设计。我无法实现这些附有屏幕截图的标签(美容、瑜伽、食谱) 。这可以通过使用这个库来实现,还是我必须自己制作。谢谢你的帮助。

0 投票
2 回答
317 浏览

cosmicmind - Push view controller in ToolbarController Material

I'm using Material framework by cosmicmind for my iOS app. My main interface is a ViewController embedded in a ToolbarController. Is there any way to achieve animation like pushViewController in a UINavigationController?

I've tried the transition function with no luck. Thanks in advance

0 投票
0 回答
88 浏览

cosmicmind - 你如何以编程方式转换标签栏控制器,我需要用代码而不是通过滑动来切换选定的索引

AppPageTabBarController(viewControllers: [Controller1, Controller2, Controller3], selectedIndex: 0)