10.11 seems to have an issue with setting too narrow of a column width for the leftmost column (Favorites, Devices, Shared, ...) when opening Finder. This issue only occurred since loading El Capitan, never prior.It is so narrow that it displays like:Applica...Docum...Downlo...Anyone else seeing this?
Search results for
column
2,046 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
The HTTPS issue is likely because of antivirus software running (particularly Norton or Avast). They have caused this issue for others. You may need to remove it completely, but first you can try disabling firewall blocking of applications and connection blocking (or just temporarily disabling its shields if it's Avast!). After a restart you should be able to connect to Facebook etc. as normal; some have even found that they can re-enable their antivirus afterwards to no ill effect.If you don't have antivirus installed then it's probably a root certificate issue. You can check (and fix) that by:Open Keychain (by pressing CMD+Space and then typing “Keychain”).Then type veri into the Keychain app's searchbar.For each of the VeriSign certificates, do the following: Check that the certificate is still valid (far right column) and delete it if it isn't.Double-click it, which brings up it's own window and expand the Trust menu.Make sure When using this certificate: is set to Use System Defaults, not Always
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Independant from the above, you could put the drive back in the enclosure and use the diskutil repairDisk command from a Terminal window to repair the EFI System Partition and the integrity of CoreStorage partitions (which yours should be due to FileVault). It will also ensure the provisioning of space for bootloaders. You can do this as follows; note that you'll be warned that a partition may be wiped - this is only the EFI partition being referred to, not the partition with OS X 10.11 installed:In the terminal window type:diskutil listLook in the rightmost column of the output under IDENTIFER and note your drive - for the next command I will assume disk1 but you'll obviously need to substitute that for whatever it is identified as. The password it will prompt you for is you login password you use for your thumb-drive installation of Yosemite.sudo diskutil repairDisk disk1
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hey All,I've got a pretty basic NSOutlineView going as I try and learn AppKit and Mac dev, my Object Value for Table Column is giving me some headache. var rootURL = NSURL(fileURLWithPath: /); var rootItem:FileSystemItem! = nil; convenience init(withRootURL url:NSURL) { self.init() self.rootURL = url; self.rootItem = FileSystemItem(withURL: url) } func outlineView(outlineView: NSOutlineView, numberOfChildrenOfItem item: AnyObject?) -> Int { var fileItem = item as? FileSystemItem; if fileItem == nil { fileItem = self.rootItem; } return fileItem?.numberOfChildren() ?? 1; } func outlineView(outlineView: NSOutlineView, isItemExpandable item: AnyObject) -> Bool { let fileItem = item as? FileSystemItem; let numChildren = fileItem?.numberOfChildren(); return numChildren > 0 ? true : false; } func outlineView(outlineView: NSOutlineView, child index: Int, ofItem item: AnyObject?) -> AnyObject { let fileItem = item as? FileSystemItem; return fileItem?.childAtIndex(index) ?? self.rootItem.childAtInd
Hello,I would like to add a custom column in the Finder and show my custom properties of a file or folder. I know we can set our own custom properties (aka extended properties) using xattr. However currently there is no way I can show these values in Finder. I could use Tags or Comments columns but they are not ideal. On Windows we could show custom properties of a file using shell extension and other stuff. Is this possible in Mac OS?Thanks,-Anish
Hi Anish,No, there's definitely no way you can add custom columns in Finder, sorry - using xattr to set the Tag or Comment metadata is your best (albeit not ideal) option.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
Hi Sassimac 🙂Re. the UUIDs, you are correct. The command to make the Recovery partition visible again would be:diskutil coreStorage revert 65F4CCBB-C457-41F3-862A-294DDetc.It shouldn't take longer than a few seconds to run.For the certificates: there are two stages to this because it's a process of deduction. Firstly:Open Keychain (by pressing CMD+Space and then typing “Keychain”).Then type veri into the Keychain app's searchbar.For each of the VeriSign certificates, do the following: Check that the certificate is still valid (far right column) and delete it if it isn't.Double-click it, which brings up it's own window and expand the Trust menu.Make sure When using this certificate: is set to Use System Defaults, not Always Trust.The remaining 10 should be left at no value specified.If the above doesn't work, use the following steps to reset the cache of accepted certificates.Open the Finder.Choose Go to Folder from the Go menu.Type /var/db/crls/ in the Go window.Click Go.Delete crlcache.db and ocspc
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I'm trying to create a vertical collection view Flow layout whose items size automatically with a single column. I've read the AppKit release notes, the updated documentation, and the headers for the various classes. I've watched the 2015 WWDC videos (NSCollectionView and AutoLayout Mysteries 1 & 2). The NSCollectionViewItem subclass represents an auto-layout-compiant, self-vertically-sizing text view (that, incidentally, auto-sizes great in a stack view, even during editing, so it's not an auto-layout issue as far as I can tell).I've verified the collection view items are my custom subclass and I can see they're loaded with the correct information (text/image) but their self-sizing is ignored. I first tried setting the collection view's collectionViewLayout property to an instance of NSCollectionViewFlowLayout that I had configured with a non-zero estimatedItemSize (which the headers say should allow for cells that self-size via preferredLayoutAttributesFittingAttributes, which can be overridden
I am seeing it too in OpenGL ES Analyzer for my app.However: look at 'Total Occurances' column: it is '2' for me.The fact that it only happened twice leads me to conclude it is caused by the OS, not by the app.My app resolves each frame, yet only two occurrances?It is probably the splash screen / launch screen that iOS throws up when starting your app.If it happens every frame for you, you may want to revisit your code. Bram
Topic:
Graphics & Games
SubTopic:
General
Tags:
I think there's more going on here than you think.What you're really asking for is inheritance, which currently does not exist for value types. Protocol extensions are vaguely similar to inheritance in some ways, but not currently so far as to allow you to have default stored properties.You could use inheritance if your columns were classes instead of structs. Indeed, in this case, I think it's clear that your columns should be classes instead of structs. Generally, structs are inappropriate when their value represents the state of some thing, whether it's a real world object or a specific entity like a column (presumable of some table or list). In this case, a particular column has one true name, presumably along with other one true properties that you haven't shown us. If the column's one true state is immutable, it doesn't really matter whether it's a value type or a reference type, but if it's mutable as yours seems likely to be, then it's almost certainly bett
Topic:
Programming Languages
SubTopic:
Swift
Tags:
I feel like this is an elementary question that I should easily find an answer to, but I've not I've successfully added my feed to the iOS 9 news app, and I've added my logo as required in the set up, and it's showing up fine. But I'm having trouble finding how to have the square image that appears above the channel icon. Can anyone help me with where that image pulls from and how to get it added to my channel? The link below is to the news app for referrence. My channel is the first column, third row down. As you can see i just have a generic ER there on a grey background. Can anyene help here? https://www.dropbox.com/s/zi8fk5kvhzeqgiq/File%20Aug%2007%2C%204%2042%2036%20PM.png?dl=0
Has ANYONE been able to submit any in app purchases with hosted content?It broke for me about a year (2 years?) ago, i submitted a DTS who told be to submit a bug report which got acknowledged by an apple engineer who told me to expedite it with itunes connect who told me they cant. (going through the please send me a description of your problem, computer model etc etc response cycle each time).It still doesnt work. but i find it hard to believe that something as critical as this would take this long to get fixed...It stopped working in xcode first but there was a work around to use application loader to submit hosed content iap's and this worked for a few months then the application loader method broke as well.Get this error when submitting IAP through application loader:ERROR: ERROR ITMS-3000: Line 75 column 82: element software_screenshot missing required attribute position at XPath /package/software/software_metadata/versions/version/locales/locale/software_screenshots/software_screenshot[24]ERRO
I'm trying to get XCode (6 and 7-beta) to display exactly what I type as I type it, but I can't stop it from modifying my formatting. For example, when I hit <Enter>, it aligns the cursor at the same indent level as the previous line rather than puttting it in column 1. I want it to display exactly what I type. If I don't type a space or a tab, I don't want it to add one.I've unchecked every box under Preferences->Text Editing in both the Editing and Indentation categories. Doesn't help.Nonetheless, XCode is still adding tabs and otherwise rearranging my code. Is there any way to get XCode to just use whatever I type verbatim, without messing with it at all? Thanks.
Hello,I mean can i use it as a unique identifier?I know that it changes if the app is uninstalled and reinstalled.But is it right to make database column for this value unique?King RegardsPS : I did not see unique in the documentation
Hi,I have signed in into XCode with my appleID to involve in free program. Then I have created iOS Developer certificate using accounts tab in xcode preferences. Then I have created an app with id as 'com.burakkurkcu.someappname' and xcode created provisioning profile for it automatically. But then I needed to test game center and I have enrolled into paid developer program. Now I have two lines shown one with Free and one with Agent in both iOS and Mac columns when I look into xcode 7's accounts tab in preferences. I can see certificates and provisioning profiles seperately for both. And when I try to create and app ID over Certs, IDs, & Profiles (https://developer.apple.com/account/overview.action) it shows up an error:An App ID with Identifier 'com.burakkurkcu.someappname' is not available. Please enter a different string.It seems like my free program certifications and ids are still active. But I couldn't find anyway to manage/revoke certifications or IDs of free program. They haven't merged
Topic:
Code Signing
SubTopic:
Certificates, Identifiers & Profiles
Tags:
Signing Certificates
Provisioning Profiles