Search results for

smb big sur

11,740 results found

Post

Replies

Boosts

Views

Activity

Reply to ARD not working
I'm seeing the same behaviour as you are, I went in and deleted any other Administrators attached to each machine and each one of them came online, but I'm also seeing another big issue with the app when on 10.11 B5.Are any of you experiencing this as well? https://forums.developer.apple.com/message/34233#34233
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’15
Reply to Photos doesn't upload to iCloud
Interesting. Try rebuilding the Photos library:Quit Photos if it is open.Hold down the Command and Option keys while you open Photos again.It should only take a few minutes even if the library is big...You may then have to trigger the iCloud syncing again by toggling the setting described in my first post.
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’15
Does Swift2 work with OS X bindings?
Although the primary target for my app is iOS, I am working on an OS X version for bootstrapping my data. It is simply more convenient to do it on the Mac than in the simulator.However, I am finding that using bindings with Swift2 is introducing some strong references that ARC isn't releasing. Specifically, I am finding that:1) Calling the bind method establishes a strong reference, even when I use weak or unowned. I can release it using only using unbind. But,2) Defining outlineView:objectValueForTableColumn:byItem: introduces a strong reference that I can't releaseI realize that OS X isn't a big market anymore and I'm really focused on iOS now. But with legacy Cocoa and the new Swift2, should we try to drop any OS X feature that doesn't exist on iOS too? Some of these things, like bindings, are nice features but there are alternatives.This really sounds like a Cocoa bug, but I'm only seeing it in Swift. I can't reproduce it in a demo application. It only happens in my big app with 1500 fil
1
0
397
Jul ’15
Beta 5 . 15A235d . MAIL bugs
5th Beta - already big troubbles with MAIL in combination with big EXCHANGE SERVER accounts.- Exchange Mail account will not be displayed in a correct way, only as intelligence postbox- MAIL crashes several time, already in combination with EXCHANGE accounts (sent to Apple)- The new SF Fonts are not as good as the older used at Yosemite (I can compare it on two Mac´s I use)I really do not understand why there are always troubbles regarding MAIL in each beta? The program itself did not change in function. I had to delete the mailboxes etc. several times, but always the EXCHANGE bugs. Hey APPLE, your MAIL Version in Yosemite works with all my EXCHANGE ACCOUNTS in a perfect way.What is going on?!BTW:- Safari crashes on several websites - old known bugs, also not solved. Also posted to Apple.
3
0
415
Aug ’15
Reply to NSURLBookmarkCreationOptions on NSURL
Thank you for your reply. In your inspiration, I did a test in my code. Here are my results.I am using let options:[NSURLBookmarkCreationOptions] = [ NSURLBookmarkCreationOptions(rawValue: 0), .MinimalBookmark, .SuitableForBookmarkFile ]1 with option 0, the bookmark even a little smaller than the .MinimalBookmark option.2 I can not get a file alias from option other than .SuitableForBookmark3 the bookmark data on option .SuitableForBookmarkFile is almost as big as a file alias.4 although you can not get a file alias directly from other option, you can still get then from bookmark to NSURL, then re-get a bookmark with .SuitableForBookmark option, then get the alias.do { try bookmark.writeToURL(newURL, options:.DataWritingAtomic) try NSURL.writeBookmarkData(bookmark, toURL: aliasURL, options: NSURLBookmarkFileCreationOptions(0)) } catch let error as NSError { print(error.localizedDescription) var isStale:ObjCBool = false let newURL = try! NSURL(byResolvingBookmarkData: bookmark, options: .WithoutUI, re
Topic: UI Frameworks SubTopic: AppKit Tags:
Aug ’15
Reply to Send Arabic Text in Push Notification
As per this stackoverflow solution: stackoverflow.com/questions/2111076/push-notification-in-non-english-languagesFor Arabic and some other non-English languages, you need to pass the length of the UTF encoded string before the counting.Use...writer.Write((byte)0); //First byte of payload length; (big-endian first byte) enter code herebyte[] b1 = System.Text.Encoding.UTF8.GetBytes(payload); writer.Write((byte)b1.Length); //payload length (big-endian second byte)... to modify the following generic C# Apple Push Notification Provider:int port = 2195; String hostname = gateway.sandbox.push.apple.com; //load certificate string certificatePath = @cert.p12; string certificatePassword = ; X509Certificate2 clientCertificate = new X509Certificate2(certificatePath, certificatePassword); X509Certificate2Collection certificatesCollection = new X509Certificate2Collection(clientCertificate); TcpClient client = new TcpClient(hostname, port); SslStream sslStream = new SslStream( client.GetStream(), false, n
Aug ’15
Reply to Forum Design - A Step Backward
KMT wrote:Apple is a user here, just like us devs. JIVE Software (Portland, OR), makes and configures the (contracted) forum software (they specialize in Windows), so I wouldn't hold my breath on improvements/tweaks/changes any time soon.This is absolutely horrible. It took 30 clicks to find my way back to this forum.I will definitely put this on the table on our next Apple Enterprise Support call.I suggest you all do the same, shine a big bright light on this horrible new forum design.Sorry for the vent, just feel like an incompetent/incapable company outbid a competent/capable company and we are all impacted.Don
Aug ’15
Reply to IdentifierForVendor changed unexpectedly + forum is broken
What's even worst with this is that if you have iCloud with CoreData your users have a huge risk of losing data.CoreData stack with iCloud creates a folder named mobile~_identifierForVendor_ where it puts the sqlite file. On app update, the identifierForVendor changes, and a new sqlite gets created with a different path: this isn't a big deal as far as users had enabled iCloud, the data would just get downloaded again. However, if the users DOESN'T have iCloud enabled, this is a mess because the old file cannot be found anymore, and data is there but unavailable.I wrote to the technical support and they told me that this is a known issue, it shouldn't happen and it was going to be fixed server-sideAnyone else is having the same issue?
Aug ’15
Start Speech recognition with API?
Hello,Is there a way to call the Speech recognition on an Xcode IOS application?Or can I make the start recording button on the keyboard bigger?Currently the microfoon icon on the keyboard start the Speech recognition.This icon is not so big, can I change it or better can I start the speech recognition from my IOS application?Thanks,Josse
0
0
596
Aug ’15
Duplicate NSUserActivity Displaying in Spotlight
Hello,I have the following simple code running in the ViewDidLoad for a simple ViewController: self.userActivity = [[NSUserActivity alloc] initWithActivityType:@com.company.activity-type]; self.userActivity.title = self.restaurant.name; self.userActivity.keywords = [NSSet setWithArray:@[@LOOK,@HERE]]; NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@suge knight, @killed 2pac, nil]; self.userActivity.userInfo = dict; CSSearchableItemAttributeSet *attributeSet = [[CSSearchableItemAttributeSet alloc] initWithItemContentType:(NSString *)kUTTypeImage]; attributeSet.title = @big hitz; attributeSet.contentDescription = [NSString stringWithFormat:@%@n%@,@cali,@rollin']; attributeSet.thumbnailData = [NSData dataWithData:UIImagePNGRepresentation(self.restaurant.imageForSpotlight)]; attributeSet.identifier = @asdf; self.userActivity.contentAttributeSet = attributeSet; self.userActivity.requiredUserInfoKeys = [NSSet setWithArray:self.userActivity.userInfo.allKeys]; self.userActivity.eligibleForSe
4
0
1.5k
Aug ’15
Reply to proportional font size
You could try setting the font size to something really really big in IB, and ticking the adjusts font size to fit width so it will auto shrink. But that would only work for static text, and might not look right on different OS versions where default fonts change. Ugly as it is, you might end up having to programmatically set the font based on some empirically determined formula (fudge factor * label width / superview width or something) in viewDidLayoutSubviews. Hopefully someone can come up with a better idea.Font sizes are specified in points, so the absolute size of text on different devices or platforms will depend on the DPI of the screen. The same font will have a different absolute (ruler) size even on different Apple devices that have varying points per inch.
Topic: UI Frameworks SubTopic: UIKit Tags:
Aug ’15
Reply to El Capitan beta 6 + Xcode
I can confirm that these two patches work.http://swcdn.apple.com/content/downloads/43/22/031-29032/71ihp9c54k547fvol25w5g85z9323gqwnr/OSXUpd10.11.pkghttp://swcdn.apple.com/content/downloads/43/22/031-29032/71ihp9c54k547fvol25w5g85z9323gqwnr/FirmwareUpdate.pkgWhile this did give me back two working versions of Xcode, after rolling back with this method, all sound has stopped working (coreaudio does not appear to load). However I can see the audio hardware when I look at System Information. Some other telltale signs indicate that all is not well. My accessibility zoom and desktop switch show visible graphic lag. I will try the disabling SIP in the recovery mode. I may want to rollback to a prior backup using Time Machine if this fails. I think that loss of sound should be in big bold letters on your post (because I missed that in my first reading), hence:NOTA BENE: YOU WILL MOST LIKELY LOSE SOUND AFTER APPLYING THIS PATCH
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15