OS X app menubar greyed out - objective-c

I'm running my app code on one computer and it works just like it should, the menubar is intractable. However, when I run it on another computer the menubar is greyed out. Both computers have OS X 10.10 and Xcode 6. Where might the error be? Some local setting or something?

Turns out the computer that caused issues was not running the latest version of Xcode (6.1) so I could not set the deployment target to 10.10. It was set to 10.9 and that caused the compatibility issues. Silly

Related

Crash while running old project on iOS 11

I have code which was initially developed on Xcode 3.2. It was then later update to become compatible with ios 7. But now when I run that code with Xcode 9 GM, it run alright on any iOS 10.x device.
But crash on iOS 11 device with following error detail:
Plus: When i open this project with Xcode 9 GM, Xcode doesn't show iPhone X simulator.
I think you have some old static libraries. iOS 11 supports only 64-bit libraries.
And also you can check Deployment target of your app. Maybe it's too low (I think ios7 deployment target is not supported now).
I think your app is running on 32-bit
As a reminder, new iOS apps and updates submitted to the App Store must support 64-bit. Support for 32-bit apps is not available in iOS 11 and all 32-bit apps previously installed on a user’s device will not launch
64-bit Apps on iOS 11
I don't know what is you exact scenario but possibilities of crash with payload could be following. Hope anyone of below all will work for you.
Please Try Following.
Disable "Enable guard Malloc" from diagnostics.
OR
You Can do Following:
delete all certificates from keychain.
Quit xcode
Delete xcode derivedData and delete all provison profiles
Restart mechine
Download latest certifcates and provison profile from Member Center
Click on certifcate i will install in keychain access.your key chain access should like this
OR
if you are using custom framworks, you need to put it inside the Embedded Binaries section located in the Xcode project under the tab Target / General.

Enter responsive design mode missing

I just upgraded safari to version 9.0.3, one of my parners in another city reproduced an error on my website using responsive desing mode and iOS 9.1 iPhone user agent in a MacBook (OSX 10.9.5).
They were explaining me how to reproduce the issue by using the "Enter responsive design mode" in the develop tab but no matter what I do, that specific option never shows up. I already disabled all extensions and deleted my preferences (not sure if this helps). I tried the option + command + R shortcut but it doesn't do anything neither. I already tried reseting safari and restarted several times.
Where did this feature go?
Edit: added screenshot:
Edit: 2nd screenshot:
According to Apple's Documentation, you have to be running OS X 10.11 El Capitan or above in order for Enter Responsive Mode.
With OS X El Capitan, Safari brings new tools and capabilities that let you create a better surfing experience with the Safari web browser.
Source: https://support.apple.com/kb/PH21491?locale=en_US
As you are running OS X 10.9 Mavericks, you are not able to enable it.
Thus, you need to upgrade to OS X 10.11 El Capitan in order to enable Responsive Mode.

unable to connect ios 9.1 device to xcode 7.1

I am trying to run application in a device with iOS 9.1 from xcode 7.1. xcode is keep crashing. I am unable to install the application in any ios 9.1 devices. I have tried 3 different devices and getting the same problem. My code is in objective-c.
I have uninstalled the xcode and then installed xcode 7.2 again. It solved my issue.
I think you should do something for fix it, maybe it's just some stupid errors from xcode.
Try to clean then build again.
Add a devices for development then test again.
Report to Apple.
Check your iOS Target Deployment first.
Also try following steps
Also try reinstalling Xcode 7 and while installing close Xcode.
Check in Xcode Preferences whether Simulator for iOS9 is installed or not.
also check whether your itunes open when plugin device.

iOS Today Widget Seems to Install only on iOS 8.3 Devices, not 8.1 or 8.2

Just created a Today Widget and all seems to be good (on ios 8.3) devices. It installs and runs fine from XCODE 6.3.1. But on iOS 8.2 or 8.1 devices, the Today Widget does not install / run even though XCODE says it is running.
If a breakpoint is put on ViewDidLoad it never gets hit. Will try and do some digging in the logs, but so far nothing...
Need to make sure that the deployment platform for the Today Widget is set to 8.0. It was created and set to 8.3 and XCODE did not have any error messages when trying to run on 8.1, 8.2, etc.

OSX App opens on some machines, not others

I have written an OSX 10.9+ app which works fine on all my test machines but two people with laptops have so far said the app opens (shows light under icon) but shows no window but will show the menu for the app with no drop down, it can highlight but does nothing else.
I can't for the life of me figure out why this is happening. I have checked Initial Controller is set in the storyboard. The plist looks ok. No complaints in console. Works on an old iMac from 2007, a Mac Pro 6 core and a New Retina iMac all with Yosemite.
Both cases where it doesn't open are on OSX 10.9.5
This is the screenshot of how it should look when opened:
The app is currently available for free, if anybody can shed some light on it I would be much appreciated.
https://itunes.apple.com/gb/app/bubble-tuner-realtime-chromatic/id972729737?mt=12
Thanks
Geoff
Storyboards are not compatible with OS X prior to v10.10:
NSStoryBoard Class Reference
Availability
Available in OS X v10.10 and later.
I experienced the same thing with a project; only nib/xibs work for OS X < v10.10.