微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift中特定部分的自定义页脚

如何解决swift中特定部分的自定义页脚

我有不同部分的 UItableview,在最后一部分我需要添加一个自定义页脚。这是我的代码,但出现错误我应该如何实现它?

这是我在 ViewDidLoad() 中的代码

import cv2 import win32gui import win32con import ctypes user32 = ctypes.windll.user32 winW,winH = [user32.GetSystemMetrics(0),user32.GetSystemMetrics(1)] imgwindow = 'show my image' image = cv2.imread('./myimage.jpg') cv2.namedWindow(imgwindow,cv2.WINDOW_AUTOSIZE) cv2.cv.CV_WINDOW_FULLSCREEN) cv2.imshow(imgwindow,image) simHndl = win32gui.GetForegroundWindow() win32gui.MoveWindow(simHndl,winW,winH,win32con.TRUE) cv2.waitKey(0) cv2.destroyAllWindows() let footerNib = UINib(nibName: SettingsFooterViewController.identifier,bundle: nil)

我也有这些代表:

tableView.register(footerNib,forheaderfooterViewReuseIdentifier: SettingsFooterViewController.identifier)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。