Search results for

Building for iOS Simulator, but the linked and embedded framework ‘XX.framework‘ was built for

186,344 results found

Post

Replies

Boosts

Views

Activity

Reply to Change company name
If you mean the (dev) name shown by the app in the store, you need to have a company/LLC and then submit the necessary documentation to Apple.See:iOS Dev Center / Support / Account ManagementIf I am enrolled as an individual, can I change to a company membership? Yes. To convert your iOS Developer Program membership from an individual to a company, please contact us. You can make this change only if you are the founder/co-founder of the company. As part of the conversion process, you may be asked to submit business documents to verify your company's identity. ◅▻
Jun ’15
How does a view controller call functionality of a view (how is the link made?)
I have a view controller, I want to action something on the view by calling a method in the view. But I get the errorfatal error: unexpectedly found nil while unwrapping an Optional valuebecause the view object isnt set. There are a couple of issues here, firstly I assume I am with MVC allowed to control the view from the view controller? Secondarily am I missing some association between the two, maybe on the storyboard? or do I set it up another way...Sorry for the basic question, but sometimes I get a bit lostKind regardsMark
2
0
415
Jun ’15
SMS & Apple Watch
So after updating my iPhone 6 and Apple Watch to their new respective betas, I had to restore my Apple Watch and start all over which I realize may be a bug. However now my watch will not let me reply to SMS messages and they don't show up in the Watch messages app. iMessages sync perfectly fine and I get SMS notifications, but no option to reply. If I try to send a new message as a SMS from the Watch, it crashes the device. This was also happening with the iOS 8.4 betas.Has anyone else had this problem? Thanks!
4
0
654
Jun ’15
Forward Call
Hello,I am looking at developing an App which manages some Call Forwarding Rules.In example: user can select contacts from his address book where he defines if the contact is send to the voicemail or to a recpetion desk number handling the call.Is the easy to do within IOS, I was reading some docs that the call forwarding data (which can be changed in the settings menu) is only editable in this menu?Who can help?Thank you in advance
Topic: UI Frameworks SubTopic: AppKit Tags:
0
0
336
Jun ’15
Reply to iOS 9 Beta battery life
I'm not sure if this is happening for everyone else but I filed a bug report on it. I had done a restore to put iOS 9 on and lost about 30% batter in standby. Home/Lock Screen took about 50% of the power, but Facebook was #2 for background activity even though I have backround app refresh disabled on Facebbook. This might be a possible case of the OS ignoring the BAR settings on some very hungry apps.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Bluetooth apps crashing
From the iOS 9 release notes:Apps that use CBCentralManager (particularly retrievePeripherals: and retrieveConnectedPeripherals) will crash on launch or upon pairing an accessory. CBCentralManager was deprecated in iOS 7.0 and has been removed in iOS 9.0.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
CBCentralManager deprecated?
The iOS 9 release notes read:Apps that use CBCentralManager (particularly retrievePeripherals: and retrieveConnectedPeripherals) will crash on launch or upon pairing an accessory. CBCentralManager was deprecated in iOS 7.0 and has been removed in iOS 9.0.I am wondering heavily if this is a mistake or actually true? CBCentralManager does not seem to be deprecated currently, and still seems to be present and working in iOS 9 from my tests. I did notice some differences in how BTLE works, but basically its still the same as before.I suppose the release notes actually mean that the two methods have been removed, not the entire class? If CBCentralManager is really removed, how is it replaced?
2
0
751
Jun ’15
Reply to How does a view controller call functionality of a view (how is the link made?)
You have to create these connections in InterfaceBuilder. The following text gives a good explanation (examples in ObjectiveC but works in Swift the same):https://developer.apple.com/library/prerelease/ios/recipes/xcode_help-IB_connections/chapters/AboutConnectingObjectstoCode.htmlAnd no fear: Cocoa is a big framework and the needed information is sometimes a little hard to find 🙂
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Printing
Anyone else get stuck trying to print from a device with iOS 9? The print sheet comes up to select the printer, pages, etc., but there's no way to actually initiate the print.
4
0
1.4k
Jun ’15
Reply to I want to put bordercolor with uiview by swift.
Thank you.I probably resolved this problem.'User Defined Runtime Attributes' was good clue for me.I tried the following code by referencing https://www.weheartswift.com/make-awesome-ui-components-ios-8-using-swift-xcode-6/@IBDesignableclass BorderView: UIView { @IBInspectable var cornerRadius: CGFloat = 5 { didSet { layer.cornerRadius = cornerRadius layer.masksToBounds = cornerRadius > 0 } } @IBInspectable var borderWidth: CGFloat = 1 { didSet { layer.borderWidth = borderWidth } } @IBInspectable var borderColor: UIColor? = UIColor.blueColor() { didSet { layer.borderColor = borderColor?.CGColor } }}if i tried above file on another project,it ran correctly.if i couldn't run correctly another project,i would write it.Thank you.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’15
Missing Apple Watch Activity Data
I have just installed iOS 9 on my iPhone 6 Plus and when it started up it wiped my apple watch and I had to set it up again.After setting my apple watch up again I am missing the Activity Data for the last 48 hours, but when i look at the activity app on my phone the steps and what not are there but the rings for the last 2 days are both empty
5
0
1.8k
Jun ’15
iOS 9 side-switch behavior
In iOS 9 beta 1, there is a Use Side Switch To: preference allowing selection of Lock Rotation or Mute, similar to iPad. As a user, I expect to enjoy this feature as I don't personally have a need to quickly disable the mute feature, but often want to lock my phone in portrait mode when reading. However, I'm noticing two immediate differences that could affect app interaction design, and I wonder if only one is deliberate.1) Rotation lock, when controlled by the side switch, behaves like previous iPhone on-screen controls in that it locks vertically. From a development perspective, that means developers should continue to implement their own controls to force landscape when necessary. YouTube provides a good example of this with their full screen control, whereas many creative apps have only a landscape mode.2) Mute is not available in Control Center, leaving no clear ability to acheive the mute functionality the side switch has toggled since the original iPhone. iPad has had this preference availabl
1
0
1.3k
Jun ’15