Post not yet marked as solved
I'm sick of this I can't figure out why Apple makes its so hard to get an app uploaded anymore... I have all the stupid icon files in the app and I'm still getting these errors.
App Store Connect Operation Error
ERROR ITMS-90032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'AppIcon74x55'"
App Store Connect Operation Error
ERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 81x60 pixels in .png format."
App Store Connect Operation Error
ERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 148x110 pixels in .png format."
App Store Connect Operation Error
ERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 134x100 pixels in .png format."
App Store Connect Operation Error
ERROR ITMS-90649: "Missing App Icon. The bundle doesn’t contain an iMessage app icon. iMessage app icons must be 180x135 pixels in .png format."
Can anyone please tell me why ecocide is acting like a Microsoft product?
My iPhone keeps randomly freezing. It responds to the volume and power buttons, if im luckly enough to get the screen working and reboot, in some instances it freezes upon booting to the front screen. im unable to put it into DFU mode, this started on the 13.1 update and now continued and become worse in the 13.1 (beta 3) update. Also clearing all apps does nothing and freezes still ocurr. Is anyone else exspirancing this or have any clue whats causing this?
Post not yet marked as solved
So i am having random i assume "Freezes" on iOS 13.1, the touch screen becomes unresponsive and seem's to hang on an input that wasnt the last touch. also siri, the volume and power button remain usable and respond as normal. Anyone else experiencing this? I have not been able to find the source of these freezes yet.
Post not yet marked as solved
Why does my Mac insist on downloading the entire macOS beta only for it not to be able to install. if there is an update it should just install the update right? What's the issue here, and is anyone else having problems? I hope i dont have to wipe and reinstall again.
Post not yet marked as solved
Ok so i've implimented a UITable view to load an RSS feed, the problem is that im unable to add a Navigation bar floating over the TableView like i am doing in other views. can anyone guide me in this area? i'm also wanting to avoid doing things that cause more prosessing or bugs on the users end.import UIKit
import SafariServices
import TIFeedParser
import Alamofire
class Listen: UITableViewController {
@IBOutlet weak var WOLMenu: UIBarButtonItem!
var items : Array = []
var entries : Array = []
override func viewDidLoad() {
super.viewDidLoad()
loadRSS()
loadAtom()
WOLMenu.target = self.revealViewController()
WOLMenu.action = #selector(SWRevealViewController.revealToggle(_:))
self.view.addGestureRecognizer(self.revealViewController().panGestureRecognizer())
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ItemCell", for: indexPath)
let item:Item = self.items[indexPath.row]
cell.textLabel?.text = item.title
cell.detailTextLabel?.text = self.pubDateStringFromDate(item.pubDate! as Date)
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let item = self.items[indexPath.row]
let url:URL = URL(string: item.link!)!
let safariViewController = SFSafariViewController(url: url, entersReaderIfAvailable: true)
present(safariViewController, animated: true, completion: nil)
}
func loadRSS() {
let feedUrlString:String = "https://vimeo.com/hidden/videos/rss"
Alamofire.request(feedUrlString).response { response in
if let data = response.data, let _ = String(data: data, encoding: .utf8) {
TIFeedParser.parseRSS(xmlData: data as NSData, completionHandler: {(isSuccess, channel, error) -> Void in
if (isSuccess) {
self.items = channel!.items!
self.tableView.reloadData()
}
if (response.error != nil) {
print((response.error?.localizedDescription)! as String)
}
})
}
}
}
func loadAtom() {
let feedUrlString:String = "https://vimeo.com/hidden/videos/rss"
Alamofire.request(feedUrlString).response { response in
if let data = response.data, let _ = String(data: data, encoding: .utf8) {
TIFeedParser.parseAtom(xmlData: data as NSData, completionHandler: {(isSuccess, feed, error) -> Void in
if (isSuccess) {
self.entries = feed!.entries!
self.tableView.reloadData()
}
if (error != nil) {
print((error?.localizedDescription)! as String)
}
})
}
}
}
func pubDateStringFromDate(_ pubDate:Date)->String {
let format = DateFormatter()
format.dateFormat = "yyyy/M/d HH:mm"
let pubDateString = format.string(from: pubDate)
return pubDateString
}
override var prefersStatusBarHidden: Bool {
return true
}
}
https://ibb.co/8g8Z2k9https://ibb.co/8g8Z2k9 storyboard viewthe current code runs well, however the navigation bar does not float. So what should i impliment to acheave this, how much code will need to change (i assume ill be changing the structure sadly)
Post not yet marked as solved
How would I implement an RSS feed for a podcast into a UITableView problematically, preferably without using 3rd party API's? I've found tutorials on how to make podcast app but not a view for a single feed.I'd appreciate any resources and help.P.S. I've asked this a few times on many developer resource websites and have not received a single response. I'm getting so frustrated by this, it shouldn't be this hard to feed a podcast into a UITableView and I shouldn't need everyone's 3rd party API's to do it. Please, any solution would be a stress relief.
Post not yet marked as solved
So I'm in the process of adding native support for a podcast into an already existing app. My goal is to have a view for users to load and stream audio podcasts linked from the RSS feed that iTunes currently uses. The second view for users to load and stream the Video from a Vimeo feed.I've looked into examples and only found ones that load multiple podcasts not a single feed. Another problem is I'm not seeing any video examples. What do you guys use to accomplish this task and do you have any examples or readable documention that may help, as I'm unsure if using RSS for this task is the best route to go, Thanks.
Post not yet marked as solved
So i'm running the following code: override func viewDidLoad()
{
if let url = URL(string: "https://www.directvnow.com") {
let request = URLRequest(url: url)
webview.load(request)
}The result is the view loading the webpage and saying the following "please rotate your phone we look better upright"... This is running on a MAC so why the heck is it even displaying a mobile interface?
Post not yet marked as solved
Hey guys im planning on implimenting a notification that welcomes the user to a location they visit 1-2 times a week. How would i be able to do so in away that isnt resource intensive and can alert them even in the background. I've been looking through frameworks for something that can help, i'd apreachate if anyone might know where to start.
I'm unable to submit my app becuase of errors on the page -_-... but there are no errors hilighted on the page... and i've been able to submit with the same information before... I really hate waisting time. anyone else pulling thier hiar out?
Post not yet marked as solved
I'm unable to submit my app becuase of errors on the page -_-... but there are no errors hilighted on the page... and i've been able to submit with the same information before... I really hate waisting time.[IMG]http://i66.tinypic.com/120qnw4.png[/IMG]
Im getting the error "Use of unresolved identifier 'MFMailComposeCancelled'" after setting up a contact forum like below. Has something changed/depreciated that Xcode isnt catching or am I just tired this morning?import Foundation
import MessageUI
class Contact : UIViewController, MFMailComposeViewControllerDelegate {
@IBOutlet weak var WOLMenu: UIBarButtonItem!
@IBOutlet var NameField: UITextField!
@IBOutlet var EmailField: UITextField!
@IBOutlet var PhoneField: UITextField!
@IBOutlet var MessageField: UITextField!
override func viewDidLoad() {
self.view.addGestureRecognizer(self.revealViewController().panGestureRecognizer())
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
@IBAction func Send(sender: AnyObject) {
let toRecipients = ["S Jobs @ apple. com"]
let mc: MFMailComposeViewController = MFMailComposeViewController()
mc.mailComposeDelegate = self
mc.setToRecipients(toRecipients)
mc.setSubject(NameField.text!)
mc.setMessageBody("Name: \(NameField.text!) \n\nEmail: \(EmailField.text!) \n\nPhone: \(PhoneField.text!) \n\nMessage: \(MessageField.text!)", isHTML: false)
self.present(mc, animated: true, completion: nil)
}
func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
switch result.rawValue {
case MFMailComposeCancelled.rawValue:
print("CANCELED")
case MFMailComposeResultFailed.rawValue:
print("Failed")
case MFMailComposeResultSaved.rawValue:
print("Saved")
case MFMailComposeResultSent.rawValue:
print("Sent")
default:
break
}
self.dismiss(animated: true, completion: nil)
}
override var prefersStatusBarHidden: Bool {
return true
}
}
This App has been perfectly fine untill i built the app again this morning first it was missing parce dont know how that got unlinked... now its throwing up random errors one after another! I havent updated Xcode and i have a dealine tomorrow... Why all the problems now? Ok without more ranting im not sure what this error is, any clues or information to help fix it is appreciated.2018-03-26 11:22:10.978724-0600 WOLC[6555:1139283] *** Assertion failure in -[UITableView _dequeueReusableCellWithIdentifier:forIndexPath:usingPresentationValues:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit/UIKit-3698.34.4/UITableView.m:7880
2018-03-26 11:22:10.981916-0600 WOLC[6555:1139283] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier WOL Live - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
*** First throw call stack:
(0x183b33164 0x182d7c528 0x183b33038 0x1844cd7f4 0x18d417564 0x18d2504dc 0x1022a9afc 0x1022a9cfc 0x18d428a30 0x18d428f94 0x18d407818 0x18d1be284 0x18d0eae18 0x187b77948 0x187b7bad0 0x187ae831c 0x187b0fb40 0x187b10980 0x183adacdc 0x183ad8694 0x183ad8c50 0x1839f8c58 0x1858a4f84 0x18d1515c4 0x1022a8598 0x18351856c)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)