Search results for

“translate scheme”

6,670 results found

Post

Replies

Boosts

Views

Activity

How to enable FinderSync Extension in the System Preference in Cocoa - Objective C
I am integrating FinderSync Extension in my Cocoa Application to show badges in files and folders. Look at the below two scenario:1) When i run application using FinderSync Extension (like DemoFinderSync), in that case Extension is added in the System Preference with Check mark and called that principal class FinderSync.m as well.2) When i run application using my Application Scheme (like DemoApp) , in that case Extension is added in the System Preference but without check mark and that principal class FinderSync.m do not call and FinderSync Extension does not work in this case.So anybody have an idea how to enable Finder Extension in the System Preference using second scenario.Also post your answer in the below StackOverflow link:http://stackoverflow.com/questions/31176942/how-to-enable-findersync-extension-in-the-system-preference-in-cocoa-objectiveAny help is appreciated..!!
Topic: UI Frameworks SubTopic: AppKit Tags:
4
0
2.3k
Jul ’15
Access UIDynamicAnimator's debugEnabled in lldb?
Hi all:I watched the WWDC15 talked titled What's New in UIKit Dynamics and Visual Effects. Around the 16:00 minute mark the speaker refers to UIDynamicAnimators debugEnabled feature.He states:• Pause the debugger• Find a reference to your UIDynamicAnimator• Set debugEnabled to trueNow, this is likely something very trivial. However, my LLDB skills are poor. If anyone could enlighten me as to how I would go about doing this the right way, it would be very much appreciated.The steps I've currently tried are:• Run the app• Hit 'pause' in the debug area• Search in local variables segment to the left of the console (it's always blank)• I've tried referring to the animator by the variable name I gave it, 'animator', but the console returns an error stating the command is invalid• I've tried using 'expr animator.debugEnabled = true' - same issue.Do I need to edit my scheme to be in a specific mode? Really quite lost.Thanks in advance for any help.
1
0
798
Jul ’15
Reply to My app crashes very often on continuous usage in iOS 9 Beta
If you can symbolicate that it might show more useful info. Assuming you have Xcode 7 installed, connect a device and drag the crash log into the Device Logs panel in the Devices window. Xcode should then symbolicate it for you. It doesn't have to be the same device it crashed on, though you might not get the OS symbols translated if it's not, only your app's.
Jul ’15
Bridging headers for a playground (7b2)?
How do I expose a C framework that isn’t in the standard library to a playground in Xcode 7.0b2?Xcode 7.0 beta 2 (7A121l), current scheme is for a 10.11 target, playground is for OS X.I want my OS X Swift file-utility struct to use a SHA1 digest to test two files for equality. The service is available through CommonCrypto, an all-C library.What works in target-member source:Adding#import <CommonCrypto/CommonCrypto.h>to the projectname_Bridging-Header.h file makes the CommonCrypto API visible to Swift source in the target. No import statement is needed in Swift. Common Crypto seems not to be a framework nor is it modularized:Objective-C headers do not accept@import CommonCrypto;even after doing a build with the #import (I understand that creates a per-project module). Nor does Swift acceptimport CommonCrypto // No such module 'CommonCrypto'Trying a find (in /System/Library or the equivalent 10.11 SDK inside Xcode) turns up nothing:find /System/Library/Frameworks/ -type f -iname 'CommonCrypto.*'T
0
0
2.4k
Jul ’15
Reply to ewrsa
My suggestion would be to either use the Objective-C code you found as is (Swift interoperates with Obj-C just fine, for the most part) or translate it to Swift. Without seeing the fixes in question that's all anyone can say.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’15
Reply to Updated to Xcode 6.4 and code signing broke
I fixed the issue after finding a Stack Overflow post with a ton of random things to try:1. Goto: Product > Scheme > Edit Scheme...2. Select Build in the left pane3. Deselect all items in the <myApp> Tests row (aside from those one cannot deselect)4. Click Close buttonI have no idea why this worked or what problems it may cause in the future but I'm atleast writing code again. I'm still really annoyed this issue came up and would like more information from Apple...
Jul ’15
Reply to can core data be used with cloud kit/document storage?
If you think Core Data with iCloud is bad, you're going to run into worse if you try to implement the scheme you describe in the first part of your post.Cloud Kit fundamentally produces increment results. Your code for processing those incremental results is going to produce the same sort of impossible exceptions that you're complaining that Core Data with iCloud is throwing. Because those are the sorts of errors that occur when you validate incremental change sets sent arbitrarily across networks.
Jul ’15
How to enable FinderSync Extension in the System Preference in Cocoa - Objective C
I am integrating FinderSync Extension in my Cocoa Application to show badges in files and folders. Look at the below two scenario:1) When i run application using FinderSync Extension (like DemoFinderSync), in that case Extension is added in the System Preference with Check mark and called that principal class FinderSync.m as well.2) When i run application using my Application Scheme (like DemoApp) , in that case Extension is added in the System Preference but without check mark and that principal class FinderSync.m do not call and FinderSync Extension does not work in this case.So anybody have an idea how to enable Finder Extension in the System Preference using second scenario.Also post your answer in the below StackOverflow link:http://stackoverflow.com/questions/31176942/how-to-enable-findersync-extension-in-the-system-preference-in-cocoa-objectiveAny help is appreciated..!!
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
4
Boosts
0
Views
2.3k
Activity
Jul ’15
Reply to How to sync data using Core Data in WatchOS 2?
If you are talking about syncing it between the app and watchOS 2, I think Watch Connectivity Framework is the only ways (as far as I can think of) to communicate between the app and watchOS 2. So you will need to establish a coommunication scheme to achieve that.
Replies
Boosts
Views
Activity
Jul ’15
partial localizations
Hi,does Apple accept partially localized AppStore entries? I have localized keywords and screenshots, but only some localized descriptions. Could i use the english description for entries without translation?
Replies
3
Boosts
0
Views
485
Activity
Jul ’15
Reply to partial localizations
In that example, try Google Translate for the descriptions.
Replies
Boosts
Views
Activity
Jul ’15
Access UIDynamicAnimator's debugEnabled in lldb?
Hi all:I watched the WWDC15 talked titled What's New in UIKit Dynamics and Visual Effects. Around the 16:00 minute mark the speaker refers to UIDynamicAnimators debugEnabled feature.He states:• Pause the debugger• Find a reference to your UIDynamicAnimator• Set debugEnabled to trueNow, this is likely something very trivial. However, my LLDB skills are poor. If anyone could enlighten me as to how I would go about doing this the right way, it would be very much appreciated.The steps I've currently tried are:• Run the app• Hit 'pause' in the debug area• Search in local variables segment to the left of the console (it's always blank)• I've tried referring to the animator by the variable name I gave it, 'animator', but the console returns an error stating the command is invalid• I've tried using 'expr animator.debugEnabled = true' - same issue.Do I need to edit my scheme to be in a specific mode? Really quite lost.Thanks in advance for any help.
Replies
1
Boosts
0
Views
798
Activity
Jul ’15
Your iOS Development certificate has been revoked? Need to re-establish?
I think I accidentally cancelled this (I couldn't run my app directly into device and thought this was the way to go). How do I fix this? I just wanted to be able to run on my actual device instead of simulator and the scheme menu in XCode wouldn't show up properly.
Replies
0
Boosts
0
Views
358
Activity
Jul ’15
Reply to Can't debug on watchOS 2
Select the phone scheme first, then select the watch scheme.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15
Reply to partial localizations
I would prefer to use the english description, instead of a possibly horribly wrong automated translation.
Replies
Boosts
Views
Activity
Jul ’15
Safari - problem to open some websites
I am not able to open all websites in Safari - if I enter for example Twitter.com I get the message Safari is not able to open twitter.com because Safari can not open a secure connection to server twitter.com (translated from German, sorry :-))Any ideas about? Certificate etc. seems to be ok.
Replies
2
Boosts
0
Views
624
Activity
Jul ’15
Reply to My app crashes very often on continuous usage in iOS 9 Beta
If you can symbolicate that it might show more useful info. Assuming you have Xcode 7 installed, connect a device and drag the crash log into the Device Logs panel in the Devices window. Xcode should then symbolicate it for you. It doesn't have to be the same device it crashed on, though you might not get the OS symbols translated if it's not, only your app's.
Replies
Boosts
Views
Activity
Jul ’15
Bridging headers for a playground (7b2)?
How do I expose a C framework that isn’t in the standard library to a playground in Xcode 7.0b2?Xcode 7.0 beta 2 (7A121l), current scheme is for a 10.11 target, playground is for OS X.I want my OS X Swift file-utility struct to use a SHA1 digest to test two files for equality. The service is available through CommonCrypto, an all-C library.What works in target-member source:Adding#import <CommonCrypto/CommonCrypto.h>to the projectname_Bridging-Header.h file makes the CommonCrypto API visible to Swift source in the target. No import statement is needed in Swift. Common Crypto seems not to be a framework nor is it modularized:Objective-C headers do not accept@import CommonCrypto;even after doing a build with the #import (I understand that creates a per-project module). Nor does Swift acceptimport CommonCrypto // No such module 'CommonCrypto'Trying a find (in /System/Library or the equivalent 10.11 SDK inside Xcode) turns up nothing:find /System/Library/Frameworks/ -type f -iname 'CommonCrypto.*'T
Replies
0
Boosts
0
Views
2.4k
Activity
Jul ’15
Reply to ewrsa
My suggestion would be to either use the Objective-C code you found as is (Swift interoperates with Obj-C just fine, for the most part) or translate it to Swift. Without seeing the fixes in question that's all anyone can say.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’15
Reply to Updated to Xcode 6.4 and code signing broke
I fixed the issue after finding a Stack Overflow post with a ton of random things to try:1. Goto: Product > Scheme > Edit Scheme...2. Select Build in the left pane3. Deselect all items in the <myApp> Tests row (aside from those one cannot deselect)4. Click Close buttonI have no idea why this worked or what problems it may cause in the future but I'm atleast writing code again. I'm still really annoyed this issue came up and would like more information from Apple...
Replies
Boosts
Views
Activity
Jul ’15
Reply to i can't test my app on my iphone
con google translator
Replies
Boosts
Views
Activity
Jul ’15
Reply to can core data be used with cloud kit/document storage?
If you think Core Data with iCloud is bad, you're going to run into worse if you try to implement the scheme you describe in the first part of your post.Cloud Kit fundamentally produces increment results. Your code for processing those incremental results is going to produce the same sort of impossible exceptions that you're complaining that Core Data with iCloud is throwing. Because those are the sorts of errors that occur when you validate incremental change sets sent arbitrarily across networks.
Replies
Boosts
Views
Activity
Jul ’15