男人这很糟糕......我正在尝试使用条纹设置ApplePay。它的文档说明我需要登录iTunesConnect并单击用户和角色.....
https://stripe.com/docs/apple-pay/web
在查看实际的Apple文档时,它说的是同样的事情:
在这里:
https://developer.apple.com/support/apple-pay-sandbox/
但是,当我登录iTunesConnect时,我看到了这个屏幕:
我似乎无法找到我应该找到用户和角色的地方..... 有谁知道我怎么能进入这个难以捉摸的屏幕?
答案 0 :(得分:0)
这是因为您不是开发者帐户的团队代理,或者您不是作为用户添加到itunes connect。
Apple开发者计划的团队代理将有权添加其他用户并为其分配角色。有关如何在iTunes Connect中添加用户和分配角色,请参阅https://www.meatti.com/blog/how-to-create-itunes-connect-limited-user/。
请参阅https://developer.apple.com/support/roles/详细了解iTunes连接和开发者帐户角色。
答案 1 :(得分:-1)
我向下看那里的let scrollView = UIScrollView(frame: CGRect(x: 0, y: 100, width: UIScreen.main.bounds.size.width , height: (UIScreen.main.bounds.size.height - 140))) var frame: CGRect = CGRect(x: 0, y: 0, width: 0, height: 0)
var subView = UIImageView()
override func viewDidLoad() {
super.viewDidLoad()
getOfferImages()
swipeGesture()
setupView()
scrollView.delegate = self
scrollView.minimumZoomScale = 1.0
scrollView.maximumZoomScale = 4.0
}
func configureScrollView(){
scrollView.backgroundColor = UIColor.black
scrollView.showsHorizontalScrollIndicator = false
scrollView.isUserInteractionEnabled = true
scrollView.clipsToBounds = true
scrollView.bouncesZoom = true
pageNumberlabel.text = "1 of \(offersImagesArray.count)"
self.view.addSubview(scrollView)
for index in 0..<images.count {
frame.origin.x = self.scrollView.frame.size.width * CGFloat(index)
frame.size = self.scrollView.frame.size
subView = UIImageView(frame: frame)
subView.tag = 1
subView.contentMode = .scaleToFill
subView.isUserInteractionEnabled = true
subView.sd_setImage(with: images[index], placeholderImage: UIImage(named:""), options: [.continueInBackground])
self.scrollView.addSubview(subView)
}
self.scrollView.isPagingEnabled = true
self.scrollView.contentSize = CGSize(width: (self.scrollView.frame.size.width * CGFloat(images.count)), height: self.scrollView.frame.size.height)
}
func viewForZoomingInScrollView(scrollView: UIScrollView) -> UIView? {
// let image = self.view.findSubview(withTag: 1)
return self.subView
}
路线。
如果这是您与iTunes Connect的第一次互动,那么在您查看/编辑用户和角色之前,您需要进行一定数量的设置。
答案 2 :(得分:-1)
这是因为您必须注册为开发人员。一旦我这样做了,选项显示了。