- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 swift 的新手,我正在使用 Storyboard并使用导航 Controller 从一个 View Controller 连接到另一个 View Controller 。我想将单击的图像的名称发送到下一个 View Controller ,该 Controller 从 imageView 模态连接到 Storyboard 中。我搜索了很多有关将数据从 oneviewcontroller 传输到另一个与 navigationcontroller 模态连接的 viewcontroller 的信息,但没有可用的解决方案。请让我知道是否需要任何代码,因为我不知道如何继续使用它。我知道这可能是最愚蠢的问题,但在网上搜索了很多之后发布了这个问题。
根据@uraimo 回复进行编辑。
我是否需要为我在 Storyboard上创建的每个转场提供名称?我在 viewcontrollerA 上有 2 个固定图像,我在每个图像上放置了一个透明背景的 uibutton 并且没有文本,然后按住 ctrl 拖动到 viewcontrollerB 的导航 Controller 以模态呈现并展开后退按钮,即 UIBarButtonItem 到 viewcontrollerA通过 ctrl 拖动 viewcontrollerB 的后退按钮退出 viewcontrollerB 并展开它。
这就是我创建导航的方式,从 viewcontrollerA 的 3 个图像中的任何一个图像单击到 viewcontrollerB,然后在单击 viewcontrollerB 的后退按钮时返回到 viewcontrollerA。如果我做错了什么请告诉我,您的 prepareForSegue 代码对完成我的任务是否有用。
最佳答案
基本上,无论是使用 IB 还是以编程方式执行此操作,都必须在执行 segue(或通过代码呈现 Controller )之前使用所需的所有数据配置新的 View Controller 。
在你的情况下,只需设置图像名称(你的自定义 View Controller 类 YourViewController 应该有一个特定的 String 属性来保存这个值)覆盖当前 View 中的 prepareForSegue
Controller 类:
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "yourModalSegueIdentifier" {
let imgName= (sender as! UIImageView)
let destination = segue.destinationViewController as UINavigationController
let yourController = destination.topViewController as YourViewController
yourController.imageName= <name here>
}
}
这解决了传递数据的问题。
但在您的情况下,您需要单击图像的名称,并且只能通过 UIGestureRecognizer 添加单击事件到 UIImageView
来获得该名称。
因此,您需要一个手势识别,在点击时将执行您创建的转场。而且,您将无法获得图像 Assets 的名称(您使用 imageNamed:
创建 UIImage
的名称),因为它不再可用,并且你必须使用 accessibilityIdentifier
。
这让一切变得更加复杂,似乎大部分都可以通过图形方式完成 here和 here (但不太清楚如何去做),但通常是通过代码完成。
使用全局变量稍微简化一下:
var currentImage = ""
func viewDidLoad(){
...
...
let aTap = UITapGestureRecognizer(target: self, action: Selector("imageTapped:"))
aTap.numberOfTapsRequired = 1
//For every image, configure it with recognizer and accessibilityId:
firstImage.userInteractionEnabled = true
firstImage.addGestureRecognizer(aTap)
firstImage.accessibilityIdentifier = "firsImage"
...
}
func imageTapped(recognizer:UITapGestureRecognizer) {
let imageView = recognizer.view as! UIImageView
currentImage = imageView.accessibilityIdentifier
self.performSegueWithIdentifier("yourModalSegueIdentifier", sender: self)
}
然后改变这个:
yourController.imageName= <name here>
为此:
yourController.imageName= currentImage
更新:
是的,这是识别它们的唯一方法,每个 UIStoryboardSegue
都有一个标识符。但请记住,segues 不是从一个 Controller 转到另一个 Controller 的唯一方法,如果您完全以编程方式进行(没有 segues),您通常会调用“presentViewController”。 Segues是一个 Storyboard概念。
同样,关于 segue 名称/标识符,您直到现在才需要它,因为您从未从代码中引用过该 segue,prepareForSegue 和 performSegueWithIdentifier 都需要它。只需选择 segue 并在右侧的检查器 Pane 中为其命名。
您描述的结构似乎没问题,唯一的问题是我不太确定是否真的需要 UIButtons,请尝试从 imageview 或直接从 viewcontroller 到目标 View Controller 的模式转场。
更新 2:
如果您刚开始,需要一门免费类(class)来教您基础知识,并让您构建一些有趣的 iOS 应用程序,我推荐 hackingwithswift .
关于uiviewcontroller - 使用 present modally 将数据从一个 uiviewcontroller 发送到另一个 navigationcontroller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33099447/
我希望能够在代码中布局我的 View Controller ,但可以看到界面构建器中显示的布局。 我知道我可以创建一个 UIView 子类,使其 IBDesignable,并将其分配给 View Co
我有一个父 UIViewController(MainVC)。从那里我有 2 个 segue 到 2 个 UIViewControllers:FirstVC(标识符:goFirstVC)和 Secon
我有一个导航 Controller 。第一个viewcontroller 是FirstViewController 的一种。当我在 FirstViewController 中点击一个按钮时,它会将第二
我有一个自定义的动画 UIViewController 过渡,似乎 iOS 中有一个错误会破坏横向布局。在主要动画方法中,我得到了横向和纵向 View 的混合。 (纵向 View 都是纵向的,所以没问
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
我有一个 UIViewController,里面有 UITabBar。我正在尝试模仿 UITabBarController。 My question is how do I set or a UIVi
是否有任何方便的方法来确定是否正在从处于后台模式的应用加载 View ? 在 3.X 中,我将依赖 viewDidLoad 进行一些初始化等操作,但是对于 4.X 而言情况并非如此,因为您不能依赖调用
我将主视图 Controller 作为带有 UICollectionView 的 View Controller ,并且填充了照片。 一旦一个单元格被点击,一个新的 View Controller 被
我有一个简单的 UIViewController(单点触控),在 UI 上有一个按钮。现在,我的用例很简单 - 我想在单击按钮时重新加载 UIViewController。在某些线程上,我读到我只需要
我在它上面有一个 UIViewController 1 UIButton(添加为 subview ),在我按下 Button(见下面的图 1)之后,在它上面添加了另一个 UIViewControlle
尝试为 iPad 制作基于 Storyboard的应用程序。在其中,我需要从开始屏幕 (UIViewController) 过渡到主屏幕 (UISplitViewController),然后再到全屏
我想调整 UIViewController 的大小在 Storyboard中,所以我可以使用它的 UIViewController作为弹出 View 。 在大多数网站上,我可以读到这些操作是: 拖一个
我正在尝试从 XIB 或 Storyboard加载 ViewModel 绑定(bind)的 ViewController(使用 MvvmCross 5.0.6)。我的应用程序的逻辑是,该 View C
我正在构建一个锻炼应用程序。我的 TableViewController 中有一系列练习,每个单元格显示不同的练习。单元格转到 UIViewController。在 UIViewController
我正在尝试从 XIB 或 Storyboard加载 ViewModel 绑定(bind)的 ViewController(使用 MvvmCross 5.0.6)。我的应用程序的逻辑是,该 View C
我有一个 UIViewController,它有一个模式窗口,我想在整个界面上展示它,包括 UITabBar。 我的应用程序层次结构是这样的: UITabBarController (A) ->
我想显示另一个 ViewController 的缩小“预览”在另一个 ViewController .这可能吗?不需要交互,因此它基本上可以是屏幕截图,但按比例缩小。我可以通过手动截屏并将其保存为图像
我正在开发一个应用程序,其中 UIViewController ( firstViewController ) 包含一些 UILabels , 一个 UIButton , 和 UIView ( sub
我的标签栏中有五个标签栏项目。第五项是弹出ViewController。因此,当我单击该按钮时,当前 Controller 中将显示一个弹出窗口。我使用 UIViewController 作为子类来实
我正在开发 iOS 应用程序。 我的应用程序有 6 个按钮,每个按钮都有每个标签栏控件。 so Main screen is [btn1] [btn2] [btn3] [btn4] [btn5] [b
我是一名优秀的程序员,十分优秀!