3

iOS アプリでコンテンツを紹介していますが、ユーザーが投票できるようにしたいと考えています。複雑な「ユーザー名の登録」機能を実装する代わりに、ユーザーが賛成できるようにしたいだけです。
Web 開発の世界では、クライアントの IP アドレスを使用して重複投票を防ぐことができました。

ユーザーが投稿に 1 回しか投票できず、重複を心配しない単純な投票システムを作成するにはどうすればよいですか?

4

2 に答える 2

9

uniqueIdentifierAppleが述べているように使用しないでください:

iOS5.0では非推奨

uniqueIdentifier

さまざまなハードウェアの詳細に基づいて、各デバイスに固有の英数字の文字列。(読み取り専用)(iOS 5.0では廃止されました。代わりに、アプリに固有の一意の識別子を作成してください。)

代わりに、このオープンソースライブラリ(実際には2つの単純なカテゴリ)uniqueIdentifierに切り替えることをお勧めします。デバイスのMACアドレスとAppBundleIdentifierを利用して、UDIDの代わりに使用できる一意のIDをアプリケーションで生成します。

UDIDとは異なり、この数はアプリごとに異なることに注意してください。

NSString含まれているカテゴリとカテゴリをインポートして、次のUIDeviceコマンドを呼び出すだけです。

#import "UIDevice+IdentifierAddition.h"
#import "NSString+MD5Addition.h"
NSString *iosFiveUDID = [[UIDevice currentDevice] uniqueDeviceIdentifier]

ここのGithubで見つけることができます:

https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5


コードは次のとおりです(.mファイルのみ-githubプロジェクトでヘッダーを確認してください):

UIDevice + IdentityAddition.m

#import "UIDevice+IdentifierAddition.h"
#import "NSString+MD5Addition.h"

#include <sys/socket.h> // Per msqr
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>

@interface UIDevice(Private)

- (NSString *) macaddress;

@end

@implementation UIDevice (IdentifierAddition)

////////////////////////////////////////////////////////////////////////////////
#pragma mark -
#pragma mark Private Methods

// Return the local MAC addy
// Courtesy of FreeBSD hackers email list
// Accidentally munged during previous update. Fixed thanks to erica sadun & mlamb.
- (NSString *) macaddress{
    
    int                 mib[6];
    size_t              len;
    char                *buf;
    unsigned char       *ptr;
    struct if_msghdr    *ifm;
    struct sockaddr_dl  *sdl;
    
    mib[0] = CTL_NET;
    mib[1] = AF_ROUTE;
    mib[2] = 0;
    mib[3] = AF_LINK;
    mib[4] = NET_RT_IFLIST;
    
    if ((mib[5] = if_nametoindex("en0")) == 0) {
        printf("Error: if_nametoindex error\n");
        return NULL;
    }
    
    if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) {
        printf("Error: sysctl, take 1\n");
        return NULL;
    }
    
    if ((buf = malloc(len)) == NULL) {
        printf("Could not allocate memory. error!\n");
        return NULL;
    }
    
    if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
        printf("Error: sysctl, take 2");
        return NULL;
    }
    
    ifm = (struct if_msghdr *)buf;
    sdl = (struct sockaddr_dl *)(ifm + 1);
    ptr = (unsigned char *)LLADDR(sdl);
    NSString *outstring = [NSString stringWithFormat:@"%02X:%02X:%02X:%02X:%02X:%02X", 
                           *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)];
    free(buf);
    
    return outstring;
}

////////////////////////////////////////////////////////////////////////////////
#pragma mark -
#pragma mark Public Methods

- (NSString *) uniqueDeviceIdentifier{
    NSString *macaddress = [[UIDevice currentDevice] macaddress];
    NSString *bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];  
    NSString *stringToHash = [NSString stringWithFormat:@"%@%@",macaddress,bundleIdentifier];
    NSString *uniqueIdentifier = [stringToHash stringFromMD5];  
    return uniqueIdentifier;
}

- (NSString *) uniqueGlobalDeviceIdentifier{
    NSString *macaddress = [[UIDevice currentDevice] macaddress];
    NSString *uniqueIdentifier = [macaddress stringFromMD5];    
    return uniqueIdentifier;
}

@end

NSString + MD5Addition.m:

#import "NSString+MD5Addition.h"
#import <CommonCrypto/CommonDigest.h>

@implementation NSString(MD5Addition)

- (NSString *) stringFromMD5{
    
    if(self == nil || [self length] == 0)
        return nil;
    
    const char *value = [self UTF8String];
    
    unsigned char outputBuffer[CC_MD5_DIGEST_LENGTH];
    CC_MD5(value, strlen(value), outputBuffer);
    
    NSMutableString *outputString = [[NSMutableString alloc] initWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
    for(NSInteger count = 0; count < CC_MD5_DIGEST_LENGTH; count++){
        [outputString appendFormat:@"%02x",outputBuffer[count]];
    }
    return [outputString autorelease];
}

@end
于 2011-10-30T17:43:52.917 に答える
4

デバイスIDでそれを行うことができます:

[[UIDevice currentDevice] uniqueIdentifier] is guaranteed to be unique to each device.

各デバイス ID が 1 回だけ賛成票を投じることができるように、チェックを実装できます。

ただし、デバイス ID は各デバイスに固有であるため、1 人のユーザーが複数のデバイス (iPad、iPhone、iPod touch など) を持っている場合、複数回 (デバイスごとに 1 回) 投票できることに注意してください。

于 2011-10-30T17:08:00.560 に答える