Domanda

Ho fatto una piccola app per consentire rapidamente le risoluzioni dello schermo sullo schermo su più monitor.Voglio mostrare il nome del prodotto come titolo del monitor, ed è molto semplice da trovare usando questo codice:

NSDictionary *deviceInfo = (__bridge NSDictionary *)IODisplayCreateInfoDictionary(CGDisplayIOServicePort(dispID), kIODisplayOnlyPreferredName);

NSDictionary *localizedNames = [deviceInfo objectForKey:[NSString stringWithUTF8String:kDisplayProductName]];

if([localizedNames count] > 0) {
    _title = [localizedNames objectForKey:[[localizedNames allKeys] objectAtIndex:0]];
} else {
    _title = @"Unknown display";
}
.

Ma CGDisplayIOServicePort è deprecato in OS X>= 10.9 e la documentazione di Apple dice che non c'è sostituto.Come trovare la porta di servizio o il nome del prodotto senza utilizzare questo metodo?

Ho provato a Io-Registry e ho provato a utilizzare il metodo IOServiceGetMatchingServices per trovare i servizi di visualizzazione ma non ho familiarità con IO-Registry per quanto non potessi trovare la soluzione.

Grazie per l'aiuto!

È stato utile?

Soluzione

Sembra che @ Eun's Post ha perso un pezzo di informazione per chiudere questa discussione. Con una piccola ricerca, ho scoperto che Ioserviceportfromcgdisplayid non è un'API che Apple fornisce. Piuttosto, è un pezzo di codice open source trovato qui: https://github.com/glfw/glfw/blob/e0a6772e5e4c672179fc69a90bcda3369792ed1f/src /cocoa_monitor.m

Ho copiato ioserviceportfromcgdisplayid e anche 'getdisplayname' da esso. Avevo bisogno di due modifiche per farlo funzionare su OS X 10.10.

    .
  1. Rimuovi il codice per gestire il numero di serie in ioserviceportfromcgdisplayID. (CfdictionaryGetValue per kdisplayserialnumber torna a null per me.)
  2. Rimuovi il progetto specifico Codice di gestione degli errori in GetDisplayName.
  3. Se hai bisogno di maggiori informazioni

      .
    • Emissione tracker del problema: github.com/glfw/glfw/issues/165
    • commit Per la soluzione: github.com/glfw/glfw/commit/e0a6772E5E4C6772E5E4C672179FC69A90BCDA3369792ED1F

    Ringraziamo Matteo Henry che ha inviato il codice lì.

Altri suggerimenti

Ecco la mia presa sul problema.Ho anche iniziato con il codice da GLFW 3.1, file cocoa_monitor.m.
Ma ho dovuto modificarlo in modi diversi da quello che ha detto Hiroshi, quindi qui va:

// Get the name of the specified display
- (NSString*) screenNameForDisplay: (NSNumber*) screen_id
{
    CGDirectDisplayID displayID = [screen_id unsignedIntValue];

    io_service_t serv = [self IOServicePortFromCGDisplayID: displayID];
    if (serv == 0)
        return @"unknown";

    CFDictionaryRef info = IODisplayCreateInfoDictionary(serv, kIODisplayOnlyPreferredName);
    IOObjectRelease(serv);

    CFStringRef display_name;
    CFDictionaryRef names = CFDictionaryGetValue(info, CFSTR(kDisplayProductName));

    if ( !names ||
         !CFDictionaryGetValueIfPresent(names, CFSTR("en_US"), (const void**) & display_name)  )
    {
        // This may happen if a desktop Mac is running headless
        CFRelease( info );
        return @"unknown";
    }

    NSString * displayname = [NSString stringWithString: (__bridge NSString *) display_name];
    CFRelease(info);
    return displayname;
}


// Returns the io_service_t (an int) corresponding to a CG display ID, or 0 on failure.
// The io_service_t should be released with IOObjectRelease when not needed.

- (io_service_t) IOServicePortFromCGDisplayID: (CGDirectDisplayID) displayID
{
    io_iterator_t iter;
    io_service_t serv, servicePort = 0;

    CFMutableDictionaryRef matching = IOServiceMatching("IODisplayConnect");

    // releases matching for us
    kern_return_t err = IOServiceGetMatchingServices( kIOMasterPortDefault, matching, & iter );
    if ( err )
        return 0;

    while ( (serv = IOIteratorNext(iter)) != 0 )
    {
        CFDictionaryRef displayInfo;
        CFNumberRef vendorIDRef;
        CFNumberRef productIDRef;
        CFNumberRef serialNumberRef;

        displayInfo = IODisplayCreateInfoDictionary( serv, kIODisplayOnlyPreferredName );

        Boolean success;
        success =  CFDictionaryGetValueIfPresent( displayInfo, CFSTR(kDisplayVendorID),  (const void**) & vendorIDRef );
        success &= CFDictionaryGetValueIfPresent( displayInfo, CFSTR(kDisplayProductID), (const void**) & productIDRef );

        if ( !success )
        {
            CFRelease(displayInfo);
            continue;
        }

        SInt32 vendorID;
        CFNumberGetValue( vendorIDRef, kCFNumberSInt32Type, &vendorID );
        SInt32 productID;
        CFNumberGetValue( productIDRef, kCFNumberSInt32Type, &productID );

        // If a serial number is found, use it.
        // Otherwise serial number will be nil (= 0) which will match with the output of 'CGDisplaySerialNumber'
        SInt32 serialNumber = 0;
        if ( CFDictionaryGetValueIfPresent(displayInfo, CFSTR(kDisplaySerialNumber), (const void**) & serialNumberRef) )
        {
            CFNumberGetValue( serialNumberRef, kCFNumberSInt32Type, &serialNumber );
        }

        // If the vendor and product id along with the serial don't match
        // then we are not looking at the correct monitor.
        // NOTE: The serial number is important in cases where two monitors
        //       are the exact same.
        if( CGDisplayVendorNumber(displayID) != vendorID ||
            CGDisplayModelNumber(displayID)  != productID ||
            CGDisplaySerialNumber(displayID) != serialNumber )
        {
            CFRelease(displayInfo);
            continue;
        }

        servicePort = serv;
        CFRelease(displayInfo);
        break;
    }

    IOObjectRelease(iter);
    return servicePort;
}
.

Questo funziona bene per me in uno screensaver che ho scritto sotto Macos 10.11 (El Capitan). L'ho testato con il display integrato del mio MacBookPro e un display Apple collegato tramite Thunderbolt.

NSString* screenNameForDisplay(CGDirectDisplayID displayID)
{
    NSString *screenName = nil;
    io_service_t service = IOServicePortFromCGDisplayID(displayID);
    if (service)
    {
        NSDictionary *deviceInfo = (NSDictionary *)IODisplayCreateInfoDictionary(service, kIODisplayOnlyPreferredName);
        NSDictionary *localizedNames = [deviceInfo objectForKey:[NSString stringWithUTF8String:kDisplayProductName]];

        if ([localizedNames count] > 0) {
            screenName = [[localizedNames objectForKey:[[localizedNames allKeys] objectAtIndex:0]] retain];
        }

        [deviceInfo release];
    }
    return [screenName autorelease];
}
.
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top