浏览代码

Add files via upload

master
Gil Shahar 4 年前
父节点
当前提交
e27f4f12be
没有帐户链接到提交者的电子邮件
共有 5 个文件被更改,包括 62 次插入0 次删除
  1. +1
    -0
      ExactTimePhone.plist
  2. +12
    -0
      Makefile
  3. +40
    -0
      Tweak.xm
  4. +9
    -0
      control
  5. 二进制
      packages/com.gilshahar7.exacttimephone_1.0_iphoneos-arm.deb

+ 1
- 0
ExactTimePhone.plist 查看文件

@@ -0,0 +1 @@
{ Filter = { Bundles = ( "com.apple.mobilephone" ); }; }

+ 12
- 0
Makefile 查看文件

@@ -0,0 +1,12 @@
export ARCHS = armv7 arm64

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = ExactTimePhone
ExactTimePhone_FILES = Tweak.xm
ExactTimePhone_CFLAGS = -fobjc-arc

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec "killall -9 MobilePhone"

+ 40
- 0
Tweak.xm 查看文件

@@ -0,0 +1,40 @@
@interface UIDateLabel : UILabel
@property (nonatomic, strong) NSDate *date;
@end

@interface MPRecentsTableViewCell
@property (nonatomic, strong) UIDateLabel *callerDateLabel;
@end

static bool is24h;


%hook MPRecentsTableViewCell
-(void)layoutSubviews{
%orig;
if(![self.callerDateLabel.text containsString:@":"]){
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
if(is24h){
[dateFormatter setDateFormat:@"\nHH:mm"];
}else{
[dateFormatter setDateFormat:@"\nh:mm a"];
}
self.callerDateLabel.textAlignment = 2;
self.callerDateLabel.numberOfLines = 2;
self.callerDateLabel.text = [self.callerDateLabel.text stringByAppendingString:[dateFormatter stringFromDate:self.callerDateLabel.date]];
}

}
%end

%ctor{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setLocale:[NSLocale currentLocale]];
[formatter setDateStyle:NSDateFormatterNoStyle];
[formatter setTimeStyle:NSDateFormatterShortStyle];
NSString *dateString = [formatter stringFromDate:[NSDate date]];
NSRange amRange = [dateString rangeOfString:[formatter AMSymbol]];
NSRange pmRange = [dateString rangeOfString:[formatter PMSymbol]];
is24h = (amRange.location == NSNotFound && pmRange.location == NSNotFound);
}

+ 9
- 0
control 查看文件

@@ -0,0 +1,9 @@
Package: com.gilshahar7.exacttimephone
Name: ExactTimePhone
Depends: mobilesubstrate
Version: 1.0
Architecture: iphoneos-arm
Description: Adds an exact time to the calls log in the stock phone app.
Maintainer: gilshahar7
Author: gilshahar7
Section: Tweaks

二进制
packages/com.gilshahar7.exacttimephone_1.0_iphoneos-arm.deb 查看文件


正在加载...
取消
保存