Post not yet marked as solved
I am trying to find a solution for the message I get which does not compare correctly with the actual system status.
In the screenshot the message states mouse4cat.app is a folder the finder shows its an application.
Can someone please help me with this as its foxed me.
Post not yet marked as solved
I am trying to establish the mechanism to Distribute my App to specific test users devices but I am struggling as I don't seem to be able to see any devices in the users registered in AppStoreConnect Users and Access.
Anyone give me a hint please?
Post not yet marked as solved
I am trying to install an unsigned iOS and need to create the blobs but cannot get tsssaver to work so what alternatives are there for unsigned iOS installs?
Post not yet marked as solved
I am developing an app based on iOS 14.5 and have a 6s with 14.4.1 and want to update it to 14.5 to complete my build and test before upload but cannot find an option on the phone so where can I download it from?
I have tried settings, software update but that only offers 15.4
I have tried iTunes but same problem.
I have tried searching in apple downloads.
I am stuck and would like some help.
Please.
Post not yet marked as solved
I am trying to complete my App for upload but cannot do the Archive which I believe is because of the warning I have for one of my view controllers.
I am using a segue for a button in my main view controller to transfer to my game view controller and that works ok in testing but I do not seem to be able to remove this warning.
I have tried using Clean and replacing the segue with code to instantiate the view controller and present it and that works in testing but still the warning persists.
I have attached some screen shots.
Can someone please give me a hint as to how I can get rid of this warning.
Post not yet marked as solved
I am trying to complete my work on a preview for my App but have not been successful in getting a complete export from iMovie using the share file option. The video did appear a few minutes after the project data file but it does not contain the titles I had added and they still exist in the iMovie project.
Is there a 'fix' for this and if not can someone suggest an alternative tool I can use to do this for item.
Post not yet marked as solved
I have the following code
let moveDirections = ["East": CGPoint(x: 1.0, y: 0.0),
"North": CGPoint(x: 0.0, y: 1.0),
"South": CGPoint(x: 0.0, y: -1.0),
"West": CGPoint(x: -1.0, y: 0.0),
]
let direction = "South"
let cdx = moveDirections[direction]?.x
Why does it insert the ?
Surely the moveDirections variable contents is not optional.
Post not yet marked as solved
I am migrating a c# app to Xcode swift and have been looking for a swift equivalent to c# Time.time which is the time in seconds since app became active.
I have seen the Timer class but all examples I have seen depend on using #selector and @objc.
How do I get the Timer class to use a completion function?
Or
Is there another way of getting the app run time in seconds?
Post not yet marked as solved
I am attempting to detect changes of a UISlider value using the observer option but I am not getting any output.
Selected parts of code here
class MainViewController: UIViewController {
@IBOutlet weak var speedSlider: UISlider!
var speedSliderObserver: NSKeyValueObservation?
override func viewDidLoad() {
super.viewDidLoad()
setSettings()
}
func setSettings() {
speedSliderObserver = speedSlider.observe(.value, options: [.old, .new]) {
object, change in
print("speedSlider from: (change.oldValue!), to: (change.newValue!)")
}
}
Am I using observe correctly or is there some other way?
Post not yet marked as solved
In my app using storyboard and spritekit developed in Xcode 12.5.1 uses segue connected button to bring up another storyboard which presents a scene and show a sprite.
The segue sequence triggered by the use pressing the Play button and running the segue shows an upward transition
and the scene with the sprite that when clicked animates that sprite.
My problem is I was getting two events that are causing me issues.
The first is that I was expecting a sidewards transition for the Show segue.
and second that the scene only covers 2 thirds on the screen not all of it.
Screenshots of. Xcode showing main storyboard and segue connections, simulator app Settings, app Game initial view and app Game with sprite animated.
Anyone any hints for me for explanation of the first event and how to resolve the second which is spoiling my development time?
Post not yet marked as solved
I am trying to get a simple animated sprite image in a very basic game using SpriteKit and Xcode 12.
I am creating an skspritenode with image named and setting its position form the touch point and adding it as a child but a red X image is shown on the simulator of iPhone 8 Plus.
I have attached screenshots.
Can someone help me with this?
Post not yet marked as solved
I am having problems with verifying the SKPhysicsBody setup which is not working.
I am having difficulty seeing the PhysicsBody border line in the scene.
Is there any way of making the border bigger, different colour, etc?
Post not yet marked as solved
I have not been able to find a solution to this problem.
Screenshots attached for run error, asset setup, code used to load image.
Anyone any hints for me on this?
Post not yet marked as solved
When I start my project the tile added to my SKScene using the editor do not appear until after I have clicked on the tiles that was selected in the scene setup.
Anyone any ideas why>
Also should these tiles be in the list shown to the left of the scene as those sprites (not part of the tileset) I dragged into the scene are.
I have attached screen shots of at start and after clicking the tiles.
Post not yet marked as solved
Using Xcode 12.5.1 and getting uncaught exception when trying to add child to the scene.
Attached screenshot shows the code being used and output containing the prints data and the error.
Anyone any ideas for me.